Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up a PureScript toolchain
uses: purescript-contrib/setup-purescript@main
with:
purescript: "unstable"
spago: "unstable"
purs-tidy: "latest"
# purs-tidy: "latest"

- uses: actions/setup-node@v2
- uses: actions/setup-node@v4.3.0
with:
node-version: "20"

- name: Cache PureScript dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
path: |
Expand All @@ -39,6 +39,5 @@ jobs:
- name: Run tests
run: spago test

- name: Check formatting
run: purs-tidy check src test

# - name: Check formatting
# run: purs-tidy check src test