Skip to content

Commit

Permalink
Combine steps in Test Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Thijsiez committed Oct 7, 2024
1 parent 4647b7d commit 2f99c06
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,8 @@ jobs:
with:
distribution: 'temurin'
java-version: '17'
- name: Move into examples directory
run: cd examples
- name: Make gradlew executable
run: chmod +x gradlew
- name: Run tests with Gradle wrapper
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: ./gradlew koverXmlReport sonar --no-daemon --continue --info
run: cd examples && chmod +x gradlew && ./gradlew koverXmlReport sonar --no-daemon --continue --info

0 comments on commit 2f99c06

Please sign in to comment.