Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
- upload unit test results always
  • Loading branch information
balrok committed May 16, 2024
1 parent 544a730 commit 0da07a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
Expand All @@ -24,7 +24,8 @@ jobs:
- name: Build with Gradle
run: ./gradlew test
- name: Unit tests results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-tests-results
path: build/reports/tests/test

0 comments on commit 0da07a0

Please sign in to comment.