generated from GoodforGod/java-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 791 Bytes
/
master.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
name: CI Master
on:
push:
branches:
- master
schedule:
- cron: 0 0 * * 0
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17' ]
name: Pull Request against Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Build
run: './gradlew classes'
- name: Test
run: './gradlew test jacocoTestReport testCodeCoverageReport'
- name: SonarQube
if: matrix.java == '17'
run: './gradlew sonar --info'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}