handle accessors and members of nt #18
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| scala: | |
| - "2.13.16" | |
| - "3.3.0" | |
| - "3.3.1" | |
| - "3.3.3" | |
| - "3.3.4" | |
| - "3.3.5" | |
| - "3.3.6" | |
| - "3.3.7" | |
| - "3.4.0" | |
| - "3.4.1" | |
| - "3.4.2" | |
| - "3.4.3" | |
| - "3.5.0" | |
| - "3.5.1" | |
| - "3.5.2" | |
| - "3.6.2" | |
| - "3.6.3" | |
| - "3.6.4" | |
| - "3.7.0" | |
| - "3.7.1" | |
| - "3.7.2" | |
| - "3.7.3" | |
| - "3.7.4" | |
| - "3.8.0" | |
| - "3.8.1" | |
| - "3.8.2" | |
| - "3.8.3" | |
| name: Test on Scala ${{ matrix.scala }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: coursier/cache-action@v8 | |
| - uses: coursier/setup-action@v3.0.0 | |
| with: | |
| jvm: "temurin:1.17.0.15" | |
| apps: sbt | |
| - name: Run tests | |
| run: sbt "++${{ matrix.scala }}; tests/test" |