Skip to content

chore: bump version to 0.9.3-SNAPSHOT #185

chore: bump version to 0.9.3-SNAPSHOT

chore: bump version to 0.9.3-SNAPSHOT #185

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ '17', '21' ]
steps:
- uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build and Test
run: mvn -B verify