Update to Scala 3.3.0 #386
Workflow file for this run
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: Tests | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
incompat: | |
name: Test Incompatibilities | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: olafurpg/setup-scala@v10 | |
- name: Test Incompatibilities | |
run: sbt '++3.3.0; incompat-3 / test; ++2.13.11; incompat-3 / test' | |
- name: Test Future Incompatibilities | |
run: sbt 'incompat-3-future / test' | |
tutorials: | |
name: Check Tutorials | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: olafurpg/setup-scala@v10 | |
- name: Sbt Migration Tutorial | |
run: sbt '++3.3.0; sbt-migration-tutorial / run; ++2.13.11; sbt-migration-tutorial / run' | |
- name: Macro Cross-Building | |
run: sbt '++3.3.0; macro-cross-building-example / test; ++2.13.11; macro-cross-building-example / test' | |
- name: Macro Mixing | |
run: sbt '++3.3.0; macro-mixing-example-test / test; ++2.13.11; macro-mixing-example-test / test' |