-
-
Notifications
You must be signed in to change notification settings - Fork 74
33 lines (29 loc) · 884 Bytes
/
sonarcloud.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
name: Test - SonarCloud Scan
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
cache-dependency-path: |
dbus-java-core/pom.xml
dbus-java-examples/pom.xml
dbus-java-osgi/pom.xml
dbus-java-tests/pom.xml
dbus-java-transport-jnr-unixsocket/pom.xml
dbus-java-transport-junixsocket/pom.xml
dbus-java-transport-native-unixsocket/pom.xml
dbus-java-transport-tcp/pom.xml
dbus-java-utils/pom.xml
- name: SonarCloud Scan
run: mvn -B clean verify -Psonarcloud -Dsonar.token=${{ secrets.SONAR_TOKEN }}