From 222ca60c6a9db88e5102a4472d23f3b2b2cf1923 Mon Sep 17 00:00:00 2001 From: Herbert Valerio Riedel Date: Sat, 2 Nov 2019 18:55:55 +0100 Subject: [PATCH] Add Haskell Example --- examples.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples.md b/examples.md index bd9bc51..3375bf6 100644 --- a/examples.md +++ b/examples.md @@ -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 }} +```