We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce925f9 commit 0d96eddCopy full SHA for 0d96edd
2 files changed
.circleci/config.yml
.github/workflows/stack.yaml
@@ -49,10 +49,12 @@ jobs:
49
include:
50
- stack-yaml: stack.yaml
51
ghc: "9.8.4"
52
+ lts: "lts23"
53
- stack-yaml: stack-lts24.yaml
54
ghc: "9.10.3"
55
+ lts: "lts24"
56
- name: stack / ghc-${{ matrix.ghc }}
57
+ name: stackage-${{ matrix.lts }}
58
59
steps:
60
- uses: actions/checkout@v3
@@ -74,6 +76,7 @@ jobs:
74
76
stack-${{ runner.os }}-${{ matrix.stack-yaml }}-
75
77
78
- name: Build
79
+ # builds tests but does not run them
80
run: |
81
stack -j2 \
82
--stack-yaml=${{ matrix.stack-yaml }} \
@@ -82,6 +85,7 @@ jobs:
85
build --test --no-run-tests
83
86
84
87
- name: Save ~/.stack cache
88
+ # save cache when pushed to master
89
if: github.ref == 'refs/heads/master'
90
uses: actions/cache/save@v5
91
with:
0 commit comments