Skip to content

add: add case instruction reordering causes non-final field variable #210

add: add case instruction reordering causes non-final field variable

add: add case instruction reordering causes non-final field variable #210

Workflow file for this run

# Quickstart for GitHub Actions
# https://docs.github.com/en/actions/quickstart
name: CI
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
fail-fast: false
max-parallel: 64
name: CI on Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: zulu
cache: maven
- run: ./mvnw -V --no-transfer-progress clean package