Skip to content

Simplify AST

Simplify AST #31

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, macos-latest]
scala: [3.4.0]
java: ['11', '17']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt ++${{ matrix.scala }} test