Skip to content

Commit

Permalink
Github actions - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
williamniemiec committed Aug 12, 2021
1 parent c86084e commit 7349e12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
GITHUB_USERNAME: williamniemiec
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
run: mvn --file pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
GITHUB_USERNAME: williamniemiec
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
run: mvn --file pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
GITHUB_USERNAME: williamniemiec
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
run: mvn --file pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
Expand Down

0 comments on commit 7349e12

Please sign in to comment.