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