File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,20 @@ name: CI
33on : [push, pull_request]
44
55jobs :
6- tests :
6+ format :
7+ name : check-format
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - name : Setup Elixir
12+ uses : actions/setup-elixir@v1
13+ with :
14+ elixir-version : 1.10.4
15+ otp-version : 23.0.4
16+ - mix deps.get
17+ - mix format --check-formatted
18+
19+ test :
720 runs-on : ubuntu-latest
821 name : OTP ${{matrix.pair.otp}} / Elixir ${{matrix.pair.elixir}}
922 strategy :
@@ -21,12 +34,10 @@ jobs:
2134 otp : 23.x
2235 steps :
2336 - uses : actions/checkout@v2
24- - name : Setup elixir
37+ - name : Setup Elixir
2538 uses : actions/setup-elixir@v1
2639 with :
2740 elixir-version : ${{matrix.pair.elixir}}
2841 otp-version : ${{matrix.pair.otp}}
29- - name : Install Dependencies
30- run : mix deps.get --only test
31- - name : Run Tests
32- run : mix test
42+ - mix deps.get
43+ - mix test
You can’t perform that action at this time.
0 commit comments