Skip to content

Compile each schema only once #106

Compile each schema only once

Compile each schema only once #106

Workflow file for this run

name: Scala CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.20, 3.3.4]
java: ['11', '17', '21']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: sbt
- uses: sbt/setup-sbt@v1
- name: Run tests
shell: bash
run: sbt ++${{ matrix.scala }} test