Fix coordinates in documentation (#4) #11
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: Continuous integration | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
env: | |
SBT_NATIVE_CLIENT: true | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
with: | |
fetch-depth: 0 | |
- uses: olafurpg/setup-scala@v13 | |
- uses: coursier/cache-action@v6.3 | |
- run: docker run -d -p 8080:8080 julienrf/endpoints4s-stubserver:1.1.0 | |
- name: Scala 2.12 tests | |
run: sbt "++ 2.12.15 test" | |
- name: Scala 3 tests | |
run: sbt "++ 3.0.2 compile" | |
- name: Scala 2.13 tests | |
run: | | |
sbt "++ 2.13.7 ;coverage; test; coverageReport; coverageAggregate" | |
bash <(curl -s https://codecov.io/bash) | |
- name: Version Policy Check | |
run: sbt versionPolicyCheck | |
- name: Code formatting | |
run: sbt scalafmtCheck |