diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 187b9b4..983dbd7 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -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: | @@ -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