Update versions in README.md (#162) #80
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: "adopt@1.8" | |
- uses: coursier/cache-action@v5 | |
- name: Install Scala Native dependencies | |
run: sudo apt-get install libgc-dev libunwind8-dev | |
- name: scalafmt | |
run: ./scripts/scalafmt --test | |
- name: MiMa | |
run: sbt ";sbt-crossproject/mimaReportBinaryIssues;sbt-scalajs-crossproject/mimaReportBinaryIssues;sbt-scala-native-crossproject/mimaReportBinaryIssues" | |
- name: Test | |
run: sbt sbt-crossproject-test/scripted |