Skip to content

Update scala3-library to 3.3.1 #369

Update scala3-library to 3.3.1

Update scala3-library to 3.3.1 #369

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.3.1"]
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 }}