-
Notifications
You must be signed in to change notification settings - Fork 180
60 lines (50 loc) · 1.38 KB
/
pr_testing.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
51
52
53
54
55
56
57
58
59
60
# Runs tests and other checks on Pull Requests
name: PR Testing
on:
pull_request:
branches:
- master
# if a second commit is pushed quickly after the first, cancel the first one's build
concurrency:
group: pr-testing-${{github.head_ref}}
cancel-in-progress: true
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Run Tests
uses: gradle/gradle-build-action@v2
with:
arguments: 'test --build-cache --no-daemon' # disable daemon since only one gradle operation will happen
generate-job-summary: false
gradle-home-cache-includes: |
caches
jdks
notifications
wrapper
Formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Run Spotless
uses: gradle/gradle-build-action@v2
with:
arguments: 'spotlessCheck --build-cache'
gradle-home-cache-includes: |
caches
jdks
notifications
wrapper