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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |