Skip to content

Commit

Permalink
Merge cdb9d32 into f17efc1
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Feb 2, 2021
2 parents f17efc1 + cdb9d32 commit ca2a6b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/maven.yml
Expand Up @@ -36,15 +36,17 @@ jobs:
restore-keys: ${{ runner.os }}-m2-
- name: Build with Maven
run: >
mvn -f com.examples.myproject/pom.xml
clean verify ${{ matrix.additional-maven-args }}
mvn verify ${{ matrix.additional-maven-args }}
working-directory: com.examples.myproject
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
- name: Generate JUnit Report
run: >
mvn -f com.examples.myproject/pom.xml
surefire-report:report-only site:site -DgenerateReports=false
mvn surefire-report:report-only site:site -DgenerateReports=false
working-directory: com.examples.myproject
if: ${{ always() }}
- name: Tree
run: tree -a
- name: Archive JUnit Report
uses: actions/upload-artifact@v2
if: ${{ always() }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-windows-mac.yml
Expand Up @@ -20,5 +20,6 @@ jobs:
with:
java-version: 8
- name: Build with Maven
run: mvn -f com.examples.myproject/pom.xml clean verify
run: mvn verify
working-directory: com.examples.myproject

0 comments on commit ca2a6b9

Please sign in to comment.