Add blitztactics.com link to related projects #22
Workflow file for this run
This file contains hidden or 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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: ['**'] | |
| push: | |
| branches: ['**'] | |
| jobs: | |
| openjdk21: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout current branch | |
| uses: actions/checkout@v4 | |
| - name: Setup sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: Setup JVM | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| cache: sbt | |
| - name: Build project | |
| run: sbt compile | |
| - name: Test project | |
| run: sbt test | |
| - name: Check Formatting | |
| run: sbt scalafmtCheckAll |