Skip to content

Commit

Permalink
Add sample cache for Erlang with Rebar3
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Ostera authored and GitHub committed Dec 29, 2020
1 parent eed9cfe commit 009fe4e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [C# - NuGet](#c---nuget)
- [D - DUB](#d---dub)
- [Elixir - Mix](#elixir---mix)
- [Erlang - Rebar3](#erlang--rebar3)
- [Go - Modules](#go---modules)
- [Haskell - Cabal](#haskell---cabal)
- [Java - Gradle](#java---gradle)
Expand Down Expand Up @@ -104,6 +105,18 @@ steps:
${{ runner.os }}-mix-
```

## Erlang - Rebar3
```yaml
- uses: actions/cache@v2
with:
path: |
~/.cache/rebar3
_build
key: ${{ runner.os }}-erlang-${{ env.OTP_VERSION }}-${{ hashFiles('**/*rebar.lock') }}
restore-keys: |
${{ runner.os }}-erlang-${{ env.OTP_VERSION }}-
```

## Go - Modules

```yaml
Expand Down

0 comments on commit 009fe4e

Please sign in to comment.