Skip to content

Commit adaa3df

Browse files
authored
Merge pull request #11 from danschultzer/cache-dialyzer-plt
Cache PLT files
2 parents 4e15677 + 4de0270 commit adaa3df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ jobs:
1818
with:
1919
otp-version: 27.0
2020
elixir-version: 1.18
21+
- uses: actions/cache@v4
22+
env:
23+
cache-name: ${{ github.event.repository.name }}-plt
24+
with:
25+
path: |
26+
_build
27+
deps
28+
key: ${{ runner.os }}-mix-${{ env.cache-name }}-${{ hashFiles('mix.lock') }}
2129
- run: mix deps.get
2230
- run: mix compile --warnings-as-errors
2331
- run: mix credo --strict --ignore design.alias

0 commit comments

Comments
 (0)