Skip to content

Merge pull request #344 from scala-steward/update/scala-library-2.12.18 #368

Merge pull request #344 from scala-steward/update/scala-library-2.12.18

Merge pull request #344 from scala-steward/update/scala-library-2.12.18 #368

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
scala: ["2.12.18", "2.13.10", "3.2.2"]
steps:
- uses: actions/checkout@v2
- uses: coursier/cache-action@v6
- uses: olafurpg/setup-scala@v11
with:
java-version: [email protected]
- run: sbt ++${{ matrix.scala }} clean scalafmtSbtCheck scalafmtCheck test doc
if: startsWith(matrix.scala, '3')
- run: sbt ++${{ matrix.scala }} clean scalafmtSbtCheck scalafmtCheck coverage test doc coverageReport coveralls
if: startsWith(matrix.scala, '2')
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}