Skip to content

Commit 74294f7

Browse files
authored
Merge pull request #18 from peterbecich/fix-ci
Fix ci
2 parents ed636c1 + 1f1b570 commit 74294f7

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/check.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up a PureScript toolchain
1515
uses: purescript-contrib/setup-purescript@main
1616
with:
1717
purescript: "unstable"
1818
spago: "unstable"
19-
purs-tidy: "latest"
19+
# purs-tidy: "latest"
2020

21-
- uses: actions/setup-node@v2
21+
- uses: actions/setup-node@v4.3.0
2222
with:
2323
node-version: "20"
2424

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

42-
- name: Check formatting
43-
run: purs-tidy check src test
44-
42+
# - name: Check formatting
43+
# run: purs-tidy check src test

0 commit comments

Comments
 (0)