Skip to content

Github workflow checkout v4 #126

Github workflow checkout v4

Github workflow checkout v4 #126

Workflow file for this run

name: Scala CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '22'
cache: 'sbt'
- name: Run tests
run: sbt test