Support polymorphic recursion #1887
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
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "coursier/cache-action@v2" | |
- name: "java ${{matrix.java}} setup" | |
uses: "olafurpg/setup-scala@v13" | |
with: | |
java-version: "${{matrix.java}}" | |
- name: "run JVM tests" | |
run: | | |
sbt "++${{matrix.scala}} coreJVM/test; cli/test; doc; paradox" | |
./test_cli.sh | |
strategy: | |
matrix: | |
java: | |
- '8' | |
- '11' | |
scala: | |
- '2.13.11' | |
timeout-minutes: 30 | |
testPY: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "coursier/cache-action@v2" | |
- name: "java ${{matrix.java}} setup" | |
uses: "olafurpg/setup-scala@v13" | |
with: | |
java-version: "${{matrix.java}}" | |
- name: "python setup" | |
uses: "actions/setup-python@v2" | |
with: | |
python-version: "${{matrix.python}}" | |
- name: "build assembly" | |
run: "sbt \"++${{matrix.scala}} cli/assembly\"" | |
- name: "generate python code" | |
run: "./bosatsuj transpile --input_dir test_workspace/ --package_root test_workspace/ --lang python --outdir pyout" | |
- name: "run python tests" | |
run: "python3 -m unittest discover pyout -v --pattern \"*.py\"" | |
strategy: | |
matrix: | |
java: | |
- '11' | |
scala: | |
- '2.13.11' | |
python: | |
- '3.9' | |
timeout-minutes: 30 | |
testJS: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "coursier/cache-action@v2" | |
- name: "java ${{matrix.java}} setup" | |
uses: "olafurpg/setup-scala@v13" | |
with: | |
java-version: "${{matrix.java}}" | |
- name: "run coreJS tests" | |
run: "sbt \"++${{matrix.scala}} coreJS/test\"" | |
strategy: | |
matrix: | |
java: | |
- '11' | |
scala: | |
- '2.13.11' | |
timeout-minutes: 30 | |
testWithCoverageReport: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "coursier/cache-action@v2" | |
- name: "java ${{matrix.java}} setup" | |
uses: "olafurpg/setup-scala@v13" | |
with: | |
java-version: "${{matrix.java}}" | |
- name: "run tests with coverage" | |
run: | | |
sbt "coverage; clean; coreJVM/test; cli/test; coverageReport" | |
bash <(curl -s https://codecov.io/bash) | |
strategy: | |
matrix: | |
java: | |
- '8' | |
timeout-minutes: 30 | |
buildWithGraal: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "coursier/cache-action@v2" | |
- name: "graalvm setup" | |
uses: "olafurpg/setup-scala@v13" | |
with: | |
java-version: "${{matrix.java}}" | |
- name: "build native image" | |
run: | | |
sbt "++${{matrix.scala}} cli/nativeImage" | |
cp cli/target/native-image/bosatsu-cli bosatsu | |
- name: "run bosatsu tests" | |
run: | | |
./bosatsu test --input_dir test_workspace/ --package_root test_workspace/ | |
strategy: | |
matrix: | |
scala: | |
- '2.13.11' | |
java: | |
- '8' | |
name: ci | |
on: | |
pull_request: {} | |
push: {} | |