Create dependency_review.yml #13
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: "Main / Pull requests build" | |
on: | |
pull_request: | |
paths-ignore: | |
- '.txt' | |
- 'LICENSE' | |
- 'docs/**' | |
branches: [ main ] | |
push: | |
branches: | |
- main | |
jobs: | |
pre-commit: | |
name: Pre-commit check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/[email protected] | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '23' | |
- name: Pre-commit checks | |
uses: pre-commit/[email protected] | |
- name: pre-commit-c-lite | |
uses: pre-commit-ci/[email protected] | |
if: always() | |
build: | |
runs-on: ${{ matrix.os }} | |
needs: [ pre-commit ] | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ windows-latest, ubuntu-latest, macos-13 ] | |
max-parallel: 1 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 23 | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: 23 | |
architecture: x64 | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn --no-transfer-progress verify |