Also cache _build for Elixir

This commit is contained in:
Eric Meadows-Jönsson 2020-11-24 15:52:21 +01:00 committed by GitHub
parent 0781355a23
commit 62a4d75442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,9 @@ steps:
```yaml
- uses: actions/cache@v2
with:
path: deps
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-