Skip to content

Update munit to 1.0.1 #169

Update munit to 1.0.1

Update munit to 1.0.1 #169

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
jobs:
test:
name: ${{ matrix.command }} ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [11, 17, 21]
command:
- "test"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: sbt
- run: sbt ${{ matrix.command }}