deps: bump org.openrewrite.recipe:rewrite-recipe-bom from 2.3.0 to 2.3.1 #574
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JVM and OS matrix | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- 'LICENSE*' | |
- '.gitignore' | |
- '**.md' | |
- '**.adoc' | |
- '*.txt' | |
jobs: | |
build: | |
concurrency: | |
group: pull_request-${{ github.event_name }}-${{ github.head_ref }}-${{ matrix.os }}-${{ matrix.java-version }} | |
cancel-in-progress: true | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
java-version: [ 17, 20 ] #Latest two LTS + latest non-LTS. | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: ${{matrix.java-version}} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build and test timefold-solver | |
run: mvn -B -Dfull verify | |
native: | |
concurrency: | |
group: pull_request-${{ github.event_name }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build and test timefold-solver in Native mode | |
run: mvn -B -Dnative verify |