Github action: remove duplicate test step

- `mvn clean package` already runs tests
- Add -B switch to skip detailed logging of dependency download progress
This commit is contained in:
ljacqu 2019-11-03 16:33:39 +01:00
parent 39fbb4ac05
commit 901b9adb8a
1 changed files with 1 additions and 3 deletions

View File

@ -14,6 +14,4 @@ jobs:
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean package --file pom.xml
- name: Tests with Maven
run: mvn test --file pom.xml
run: mvn -B clean package --file pom.xml