-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 1.04 KB
/
ci.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
name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- '*'
jobs:
lint:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
java-package: jdk
cache: 'maven'
- name: spotless:check
run: mvn --batch-mode --no-transfer-progress spotless:check
test:
name: test ${{ matrix.os }} jdk${{ matrix.java }}
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 11, 17, 21 ]
include:
- os: windows-latest
java: 20
- os: macos-latest
java: 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
java-package: jdk
cache: 'maven'
- name: Test
run: mvn --batch-mode --no-transfer-progress test