-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (48 loc) · 1.41 KB
/
pr-builds.yml
File metadata and controls
55 lines (48 loc) · 1.41 KB
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Multiplatform PR Builds
on:
pull_request:
branches:
- "main"
paths-ignore:
- .github/**
- docs/**
- artwork/**
- README.md
- docker-*
- index.md
- jbang-catalog.json
- Makefile
- LICENSE
env:
PROJECTS: ${{ github.workspace }}
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
experimental: [false]
include:
- os: [ windows-latest ]
experimental: true
fail-fast: true
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B --no-transfer-progress install --file pom.xml