Skip to content

Commit

Permalink
FIX: Try package and execute in same step.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlwilson committed Dec 5, 2023
1 parent b6f8518 commit 961808b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@ jobs:
- name: Test with Maven
if: (matrix.java-version == 11)
run: mvn --batch-mode verify -DjacocoAgg
- name: Package with Maven
run: mvn --batch-mode package -DjacocoAgg
- name: Test build package on Windows
if: (matrix.os == 'windows-latest')
run: ./odf-validator.bat --version
run: mvn --batch-mode package -DjacocoAgg && ./odf-validator.bat --version
- name: Test build package on Ubuntu
if: (matrix.os == 'ubuntu-latest')
run: ./odf-validator --version
run: mvn --batch-mode package -DjacocoAgg && ./odf-validator --version

0 comments on commit 961808b

Please sign in to comment.