Add Haskell Example

pull/38/head
Herbert Valerio Riedel 5 years ago committed by GitHub
parent 87c0185d27
commit 222ca60c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
- [Ruby - Gem](#ruby---gem)
- [Go - Modules](#go---modules)
- [Haskell - Cabal](#haskell---cabal)
## Node - npm
@ -108,3 +109,12 @@ uses: actions/cache@preview
restore-keys: |
${{ runner.os }}-go-
```
## Haskell - Cabal
```yaml
- uses: actions/cache@preview
with:
path: ~/.cabal/store
key: ${{ runner.os }}-haskell-${{ matrix.ghc }}
```

Loading…
Cancel
Save