Skip to content

ci: explicitly install SBT (removed from GitHub in newer Ubuntu versi… #61

ci: explicitly install SBT (removed from GitHub in newer Ubuntu versi…

ci: explicitly install SBT (removed from GitHub in newer Ubuntu versi… #61

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- uses: sbt/setup-sbt@v1
- name: 👌 Run "pre-push" tasks (compile and style-check)
run: sbt prep
- name: ✅ Generate a project and run its test
run: sbt g8Test