Skip to content

Commit

Permalink
Normalize mvn invocation on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 11, 2023
1 parent bb99f20 commit 506a586
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V test jacoco:report --file pom.xml --no-transfer-progress
run: mvn --show-version --batch-mode --no-transfer-progress test jacoco:report

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
java-version: ${{ matrix.java }}
- name: Build with Maven
# Use the default goal
run: mvn -V --file pom.xml --no-transfer-progress
run: mvn --show-version --batch-mode --no-transfer-progress

0 comments on commit 506a586

Please sign in to comment.