Commit ce7720b 1 parent 783d064 commit ce7720b Copy full SHA for ce7720b
File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,23 @@ jobs:
30
30
_build
31
31
key : ${{ runner.os }}-${{ env.ELIXIR_VERSION }}-${{ env.OTP_VERSION }}-${{ env.MIX_ENV }}-mixlockhash-${{ env.MIX_LOCK_HASH }}
32
32
33
- - name : Install Dependencies
33
+ - name : Install mix dependencies
34
+ if : steps.restore-cache.outputs.cache-hit != 'true'
34
35
run : mix deps.get
35
36
37
+ - name : Compile dependencies
38
+ if : steps.restore-cache.outputs.cache-hit != 'true'
39
+ run : mix deps.compile
40
+
41
+ - name : Compile
42
+ run : mix compile --warnings-as-errors --force
43
+
36
44
- name : Check Formatting
37
45
run : mix format --check-formatted
38
46
47
+ - name : Check unused deps
48
+ run : mix deps.unlock --check-unused
49
+
39
50
- name : Run Tests
40
51
run : mix test
41
52
You can’t perform that action at this time.
0 commit comments