Skip to content

Issue #382: fix MagicNumber violations in patch-filters #982

Issue #382: fix MagicNumber violations in patch-filters

Issue #382: fix MagicNumber violations in patch-filters #982

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
install:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Setup local maven cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: maven-cache-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 21
- name: Build with Maven
run: mvn -e --no-transfer-progress install