Skip to content

Updated comment after checking. #13

Updated comment after checking.

Updated comment after checking. #13

Workflow file for this run

# Builds and tests the project code
name: Build
on:
push:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test