Skip to content

Commit 66b99a8

Browse files
simplify
1 parent 42ad3e9 commit 66b99a8

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,23 +68,20 @@ jobs:
6868
${{ steps.setup-haskell-stack.outputs.stack-root }}
6969
.stack-work
7070
key: ${{ runner.os }}-lts-24-${{ github.sha }}
71-
restore-keys: |
72-
${{ runner.os }}-lts-24
71+
restore-keys: ${{ runner.os }}-lts-24
7372

7473
- name: Test
75-
env:
76-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
7774
run: |
7875
set -ex
7976
stack test --coverage
8077
stack hpc report constrained-generators
8178
82-
- uses: actions/cache/save@v4
83-
with:
84-
path: |
85-
${{ steps.setup-haskell-stack.outputs.stack-root }}
86-
.stack-work
87-
key: ${{ runner.os }}-lts-24-${{ github.sha }}
79+
- uses: actions/cache/save@v4
80+
with:
81+
path: |
82+
${{ steps.setup-haskell-stack.outputs.stack-root }}
83+
.stack-work
84+
key: ${{ runner.os }}-lts-24-${{ github.sha }}
8885

8986
- name: Upload coverage report
9087
env:

0 commit comments

Comments
 (0)