avoid deprecated old shell syntax #1062
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
jdk8: | |
name: JDK8 tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: temurin:8 | |
- run: sbt test scripted | |
jdk11: | |
name: JDK11 tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: temurin:11 | |
- run: sbt test scripted | |
jdk17: | |
name: JDK17 tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: temurin:17 | |
- run: sbt "test; scripted sbt-*/* skip-windows/*" | |
jdk21: | |
name: JDK21 tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: temurin:21 | |
- run: sbt "test; scripted sbt-scalafix/* skip-windows/*" | |
windows: | |
name: Windows tests | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
- run: sbt ci-windows | |
shell: bash | |
checks: | |
name: Scalafmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
- run: ./bin/scalafmt --test |