File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 19
19
20
20
- name : " Install stylish-haskell"
21
21
run : |
22
- cabal update
23
22
cabal install stylish-haskell
24
23
24
+ - name : " Check stylish-haskell is available"
25
+ run : |
26
+ echo $(which stylish-haskell)
27
+
28
+ - name : Compiled deps cache
29
+ id : stylish-haskell-compiled-cache
30
+ uses : actions/cache@v2
31
+ env :
32
+ cache-name : stylish-haskell-compiled-cache
33
+ with :
34
+ path : ${{ env.CABAL_PKGS_DIR }}
35
+ key : ${{ inputs.cache-prefix }}${{ env.cache-name }}-${{ inputs.os }}-${{ inputs.ghc }}-${{ env.INDEX_STATE }}-${{ hashFiles('cabal.project.freeze') }}
36
+ restore-keys : |
37
+ ${{ inputs.cache-prefix }}${{ env.cache-name }}-${{ inputs.os }}-${{ inputs.ghc }}-${{ env.INDEX_STATE }}-
38
+ ${{ inputs.cache-prefix }}${{ env.cache-name }}-${{ inputs.os }}-${{ inputs.ghc }}-
39
+ ${{ inputs.cache-prefix }}${{ env.cache-name }}-${{ inputs.os }}-
40
+
25
41
- uses : actions/setup-python@v3
26
42
- uses : pre-commit/action@v3.0.0
You can’t perform that action at this time.
0 commit comments