Merge pull request #2 from reibitto/improve-balancing #6
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: Scala CI | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
jvm: | |
strategy: | |
fail-fast: false | |
matrix: | |
scala: [2.12.19] | |
java: [[email protected], [email protected]] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: sbt ++${{ matrix.scala}} fmtCheck test |