Skip to content

Commit

Permalink
feat(github): make gradle fail fast when running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
apancorb committed Sep 26, 2024
1 parent c19fe27 commit 31e6c2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:

- name: Run tests
run: |
./gradlew --no-daemon --stacktrace test
./gradlew --no-daemon --stacktrace test --fail-fast
- name: Persist test results for sonar
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:

- name: Run tests
run: |
./gradlew --no-daemon --stacktrace test
./gradlew --no-daemon --stacktrace test --fail-fast
integration-tests:
needs: build
Expand All @@ -314,4 +314,4 @@ jobs:

- name: Run tests
run: |
./gradlew --no-daemon --stacktrace integrationTest
./gradlew --no-daemon --stacktrace integrationTest --fail-fast

0 comments on commit 31e6c2a

Please sign in to comment.