-
Notifications
You must be signed in to change notification settings - Fork 13
38 lines (33 loc) · 751 Bytes
/
ci.yml
File metadata and controls
38 lines (33 loc) · 751 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
name: CI
# workflow triggers
on:
# manually
workflow_dispatch:
# PRs on `main`
pull_request:
branches:
- main
jobs:
verify:
name: Verify build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Setup Java and Maven cache
uses: actions/setup-java@v5.2.0
with:
distribution: 'temurin'
java-version: '17'
check-latest: true
cache: 'maven'
- name: Verify build
run: >
./mvnw clean verify
--batch-mode
--update-snapshots
--no-transfer-progress