Merge pull request #473 from xuwei-k/patch-1 #126
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: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coursier/cache-action@v5 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- name: Setup yarn | |
run: npm install -g yarn@1.22.15 | |
- name: Unit tests | |
run: sbt test | |
- name: Scripted tests | |
run: sbt scripted | |
- name: Build the manual | |
run: sbt manual/makeSite |