Skip to content

Set up SBT in GitHub Actions since it is no longer included in the bu… #14

Set up SBT in GitHub Actions since it is no longer included in the bu…

Set up SBT in GitHub Actions since it is no longer included in the bu… #14

Workflow file for this run

name: CI
on: [push, workflow_dispatch]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Set up SBT
uses: sbt/setup-sbt@v1
- name: Test
run: ./.github/run.sh --no-lint
- name: Lint
run: ./.github/run.sh --no-test