Skip to content

Commit

Permalink
Update test-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Srdjan-V committed Apr 24, 2024
1 parent e22ef62 commit 10bd56c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
execute:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]

Expand All @@ -31,4 +32,11 @@ jobs:
uses: gradle/actions/setup-gradle@v3

- name: Run tests
run: ./gradlew check
run: ./gradlew check

- name: Upload build reports
if: always()
uses: actions/upload-artifact@v3
with:
name: build-reports-${{ matrix.os }}
path: build/reports/

0 comments on commit 10bd56c

Please sign in to comment.