Commit 3f64815 1 parent 83b9d9d commit 3f64815 Copy full SHA for 3f64815
File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,22 @@ jobs:
29
29
with :
30
30
otp-version : ${{matrix.otp}}
31
31
elixir-version : ${{matrix.elixir}}
32
+ - name : Deps and _build cache
33
+ uses : actions/cache@v4
34
+ id : deps-cache
35
+ with :
36
+ path : |
37
+ deps
38
+ _build
39
+ key : ${{ runner.os }}-${{ runner.arch }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('mix.lock') }}
32
40
- name : Install Dependencies
41
+ if : steps.deps-cache.outputs.cache-hit != 'true'
33
42
run : |
34
43
mix local.hex --force
35
44
mix local.rebar --force
36
45
mix deps.get --only test
46
+ - run : mix deps.compile
47
+ if : steps.deps-cache.outputs.cache-hit != 'true'
37
48
- run : mix format --check-formatted
38
49
if : matrix.check_formatted
39
50
- run : mix compile --warnings-as-errors
You can’t perform that action at this time.
0 commit comments