File tree Expand file tree Collapse file tree 1 file changed +11
-18
lines changed Expand file tree Collapse file tree 1 file changed +11
-18
lines changed Original file line number Diff line number Diff line change @@ -11,37 +11,30 @@ jobs:
11
11
runs-on : ubuntu-20.04
12
12
env :
13
13
MIX_ENV : test
14
+ name : OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
14
15
strategy :
15
16
fail-fast : false
16
17
matrix :
17
18
include :
18
- - pair :
19
- elixir : 1.8.2
20
- otp : 20.3.8.26
21
- - pair :
22
- elixir : 1.11.4
23
- otp : 23.2.7
24
- lint : lint
19
+ - elixir : " 1.11 "
20
+ otp : " 23 "
21
+ lint : true
22
+ - elixir : " 1.10 "
23
+ otp : " 23 "
24
+ - elixir : " 1.8 "
25
+ otp : " 20 "
25
26
steps :
26
27
- uses : actions/checkout@v2
27
-
28
28
- uses : erlef/setup-elixir@v1
29
29
with :
30
- otp-version : ${{matrix.pair.otp}}
31
- elixir-version : ${{matrix.pair.elixir}}
32
-
33
- - name : Install Dependencies
34
- run : mix deps.get --only test
35
-
30
+ otp-version : ${{matrix.otp}}
31
+ elixir-version : ${{matrix.elixir}}
32
+ - run : mix deps.get --only test
36
33
- run : mix format --check-formatted
37
34
if : ${{ matrix.lint }}
38
-
39
35
- run : mix deps.get && mix deps.unlock --check-unused
40
36
if : ${{ matrix.lint }}
41
-
42
37
- run : mix deps.compile
43
-
44
38
- run : mix compile --warnings-as-errors
45
39
if : ${{ matrix.lint }}
46
-
47
40
- run : mix test
You can’t perform that action at this time.
0 commit comments