Skip to content

Github workflow checkout v3 #125

Github workflow checkout v3

Github workflow checkout v3 #125

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@v3
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '22'
cache: 'sbt'
- name: Run tests
run: sbt test