Merge pull request #446 from scala-steward/update/sbt-ci-release-1.9.0 #535
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: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
checks: | |
name: Format and style checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: sbt | |
- run: sbt --client scalafixAll --check | |
- run: sbt --client scalafmtCheckAll | |
- run: sbt --client scalafmtSbtCheck | |
- run: sbt --client headerCheckAll | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
test: | |
name: Compile and test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: sbt | |
- run: git submodule update --init | |
- run: sbt --client test | |
- uses: GabrielBB/[email protected] | |
with: | |
run: sbt scripted |