feat: migrate to spago@next #60
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up a PureScript toolchain | |
uses: purescript-contrib/setup-purescript@main | |
with: | |
purescript: "latest" | |
purs-tidy: "latest" | |
spago: "unstable" | |
- name: Cache PureScript dependencies | |
uses: actions/cache@v4 | |
with: | |
key: ${{ runner.os }}-spago-${{ hashFiles('**/spago.lock') }} | |
path: | | |
.spago | |
output | |
- name: Build source | |
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages | |
- name: Run tests | |
run: spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning | |
- name: Verify formatting | |
run: purs-tidy check src test |