Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Merge pull request #54 from sjrd/fill-in-the-question-marks #117

Merge pull request #54 from sjrd/fill-in-the-question-marks

Merge pull request #54 from sjrd/fill-in-the-question-marks #117

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- uses: actions/setup-node@v4
with:
node-version: '22-nightly'
- name: npm install
run: npm install
- name: Tests
run: sbt tests/test
- name: Run the Sample
run: sbt sample/run
- name: Format
run: sbt scalafmtCheckAll