Restructured docs #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 23 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "23" | |
distribution: "temurin" | |
cache: "sbt" | |
- name: Setup sbt launcher | |
uses: sbt/setup-sbt@v1 | |
- name: Run unit tests | |
run: sbt test | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |