Skip to content

Commit

Permalink
Add Elixir Mix example (#42)
Browse files Browse the repository at this point in the history
* Add Elixir Mix example

* Fix typo
  • Loading branch information
Ishizaka Tomoya authored and Josh Gross committed Nov 4, 2019
1 parent fe98aa6 commit 8c4c641
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
- [Ruby - Gem](#ruby---gem)
- [Go - Modules](#go---modules)
- [Elixir - Mix](#elixir---mix)

## Node - npm

Expand Down Expand Up @@ -108,3 +109,13 @@ uses: actions/cache@preview
restore-keys: |
${{ runner.os }}-go-
```
## Elixir - Mix
```yaml
- uses: actions/cache@preview
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
```

0 comments on commit 8c4c641

Please sign in to comment.