Merge pull request #1485 from adpi2/add-api-doc #1903
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: | |
branches: | |
- main | |
- develop | |
jobs: | |
checks: | |
name: Scalafmt and Scalafix | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
- run: sbt "scalafixAll --check" | |
- run: ./bin/scalafmt --test | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: "adopt:1.8" | |
- uses: coursier/cache-action@v6 | |
- name: Unit tests | |
run: sbt test | |
shell: bash | |
- name: Package server | |
run: sbt server/universal:packageBin | |
shell: bash | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: "adopt:1.8" | |
- name: Integration tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: sbt 'IntegrationTest/test' |