Skip to content

Bump org.ow2.asm:asm from 9.6 to 9.7 #384

Bump org.ow2.asm:asm from 9.6 to 9.7

Bump org.ow2.asm:asm from 9.6 to 9.7 #384

Workflow file for this run

---
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [17, 21, 22]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B test package --file pom.xml