Merge pull request #515 from scala-steward/update/tapir-core-1.10.13 #770
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: coursier/cache-action@v6 | |
- uses: laughedelic/coursier-setup@v1 | |
with: | |
jvm: adopt:14 | |
apps: sbtn | |
- run: sbtn scalafixAll --check | |
- run: sbtn scalafmtCheckAll | |
- run: sbtn scalafmtSbtCheck | |
- run: sbtn 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: coursier/cache-action@v6 | |
- uses: laughedelic/coursier-setup@v1 | |
with: | |
jvm: adopt:14 | |
apps: sbtn | |
- run: sbtn test |