Bump io.springfox:springfox-swagger-ui from 2.8.0 to 2.10.0 #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration flow | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Continuous Integration flow | |
run: | | |
echo "Building with mvn clean install" | |
mvn clean install | |
echo "Building docker images and running..." | |
cd scripts | |
pip3 install asserts | |
pip3 install requests | |
./build-env.sh | |
echo "Build Finished" |