Skip to content

Specify what happens under the hood #21

Specify what happens under the hood

Specify what happens under the hood #21

Workflow file for this run

name: Scala CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
packages: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PUBLISH }}