chore(deps): update dependency gradle to v8.11.1 #694
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: Test Daemon | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- daemon/** | |
- .github/workflows/test-daemon.yml | |
pull_request: | |
branches: | |
- master | |
paths: | |
- daemon/** | |
- .github/workflows/test-daemon.yml | |
jobs: | |
test-daemon: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('daemon/*.gradle.kts') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build and analyze | |
working-directory: daemon | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew test sonarqube --info | |
- name: Publish Test Report - Daemon | |
uses: mikepenz/action-junit-report@v3 | |
if: success() || failure() | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' |