-
Notifications
You must be signed in to change notification settings - Fork 11
50 lines (48 loc) · 1.35 KB
/
test-daemon.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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'