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 a2814b6 commit 43dbab1Copy full SHA for 43dbab1
.github/workflows/ci.yml
@@ -31,16 +31,11 @@ jobs:
31
- name: Cache dependencies
32
uses: actions/cache@v2
33
with:
34
- path: |
35
- ~/.stack
36
- .stack-work
37
- key: ${{ runner.os }}-stack-${{ hashFiles('stack.yaml.lock') }}
38
- restore-keys: |
39
- ${{ runner.os }}-stack
+ path: ~/.stack
+ key: ${{ runner.os }}-stack-${{ hashFiles('stack.yaml.lock') }}-${{ hashFiles('trypurescript.cabal') }}
40
41
- name: Build server code
42
- run: |
43
- stack --no-terminal -j1 build
+ run: stack --no-terminal -j1 build
44
45
- name: Build server assets
46
if: github.event_name == 'release'
0 commit comments