Skip to content

Commit

Permalink
build: Add Scala 3 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbr committed May 18, 2023
1 parent 1904b60 commit 9ab3aca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala: [2.12.12, 2.13.6]
scala: [2.12.12, 2.13.6, 3.0.2]
java: ['1.8', '1.11']
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -52,4 +52,4 @@ jobs:
find ~/.sbt -name "*.lock" -delete
fi
- name: test
run: ${{ format('./sbt ++{0} clean test', matrix.scala) }}
run: ${{ format('./sbt "++{0} -v clean; ++{0} test"', matrix.scala) }}

0 comments on commit 9ab3aca

Please sign in to comment.