-
Notifications
You must be signed in to change notification settings - Fork 8
39 lines (33 loc) · 788 Bytes
/
ci.yml
File metadata and controls
39 lines (33 loc) · 788 Bytes
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
name: CI
on:
push:
paths-ignore:
- '*.md'
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [ '11', '17' ]
os: [ 'ubuntu-latest', 'macOS-15' ]
steps:
- name: checkout the repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up JVM
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Run install
# Skip tests because we require the install before the publish
# we'll then test right after
run: mvn clean install -DskipTests
- name: Run tests
run: mvn test