Skip to content

Commit c86084e

Browse files
Github actions - fix
1 parent 79135a8 commit c86084e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: MacOS-java
1+
name: MacOS
22

33
on:
44
push:
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
GITHUB_USERNAME: williamniemiec
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
run: mvn --settings src/java/settings.xml --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
23+
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
2424
- uses: codecov/codecov-action@v1
2525
with:
2626
file: ./**/target/site/jacoco/jacoco.xml

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Ubuntu-java
1+
name: Ubuntu
22

33
on:
44
push:
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
GITHUB_USERNAME: williamniemiec
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
run: mvn --settings src/java/settings.xml --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
23+
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
2424
- uses: codecov/codecov-action@v1
2525
with:
2626
file: ./**/target/site/jacoco/jacoco.xml

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Windows-java
1+
name: Windows
22

33
on:
44
push:
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
GITHUB_USERNAME: williamniemiec
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
run: mvn --settings src/java/settings.xml --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
23+
run: mvn --file src/java/pom.xml jacoco:prepare-agent resources:testResources install jacoco:report
2424
- uses: codecov/codecov-action@v1
2525
with:
2626
file: ./**/target/site/jacoco/jacoco.xml

0 commit comments

Comments
 (0)