Skip to content

chore: bump version to 0.0.1-alpha.8 #66

chore: bump version to 0.0.1-alpha.8

chore: bump version to 0.0.1-alpha.8 #66

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (Java ${{ matrix.java-version }})
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ["8", "11", "17", "21"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- run: mvn -B test