Skip to content

Commit

Permalink
tweak actions
Browse files Browse the repository at this point in the history
  • Loading branch information
paulk-asert committed Dec 19, 2024
1 parent d6b59cd commit 094e7ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@ jobs:
- name: Build and run tests
run: ./gradlew --no-daemon --no-build-cache test
timeout-minutes: 60
- name: Upload reports
uses: actions/upload-artifact@v4
if: always()
with:
name: build-reports
path: build/reports/
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
timeout-minutes: 60
- name: Upload reports
uses: actions/upload-artifact@v4
if: success() || failure() # always run even if the previous step fails
if: always()
with:
name: build-reports
path: build/reports/
2 changes: 1 addition & 1 deletion .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 60
- name: Upload reports
uses: actions/upload-artifact@v4
if: success() || failure() # always run even if the previous step fails
if: always()
with:
name: build-reports
path: '**/build/reports/'

0 comments on commit 094e7ec

Please sign in to comment.