Skip to content

ci: don't remove dependabot from release notes #582

ci: don't remove dependabot from release notes

ci: don't remove dependabot from release notes #582

Workflow file for this run

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