Skip to content

fix(#353): Consider Inner Blocks During Statements Scan #559

fix(#353): Consider Inner Blocks During Statements Scan

fix(#353): Consider Inner Blocks During Statements Scan #559

Workflow file for this run

---
name: mvn
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Tests
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 17]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: mvn clean install -Pqulice --errors --batch-mode