Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto-Gentili committed Oct 22, 2022
1 parent cddafd9 commit 918e83b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:
branches:
- master
paths:
- "src/main/**.java"
- "src/test/**.java"
- "src/main/**"
- "src/test/**"
# - ".github/workflows/**"
- "**.graph"
- "**.properties"
- "**.xml"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/[A] compute coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths:
- "src/main/**"
- "src/test/**"
- ".github/workflows/**"
# - ".github/workflows/**"
- "**.properties"
- "**.xml"

Expand All @@ -17,9 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'zulu'
architecture: x64
- name: Build and test
run: mvn clean test -DskipTests=false -Dproject_jdk_version=8 -P run-coveralls jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls_repo_token }}
Expand Down

0 comments on commit 918e83b

Please sign in to comment.