Merge pull request #12368 from nextcloud/dependabot/github_actions/ac… #6335
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: | |
pull_request: | |
branches: [ master, stable-* ] | |
push: | |
branches: [ master, stable-* ] | |
permissions: | |
contents: read | |
pull-requests: write | |
concurrency: | |
group: unit-tests-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Delete old comments | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ always() }} | |
run: scripts/deleteOldComments.sh "test" "Unit" ${{github.event.number}} | |
- name: Run unit tests with coverage | |
uses: gradle/gradle-build-action@982da8e78c05368c70dac0351bb82647a9e9a5d2 # v2.11.1 | |
with: | |
arguments: jacocoTestGplayDebugUnitTest | |
- name: Upload failing results | |
if: ${{ failure() }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: scripts/uploadReport.sh "${{ secrets.LOG_USERNAME }}" "${{ secrets.LOG_PASSWORD }}" ${{github.event.number}} "test" "Unit" ${{github.event.number}} | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unit | |
fail_ci_if_error: true | |
- name: Upload jacoco artifacts | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 | |
with: | |
name: test-results | |
path: app/build/reports/tests/testGplayDebugUnitTest/ |