File tree Expand file tree Collapse file tree 1 file changed +37
-2
lines changed
Expand file tree Collapse file tree 1 file changed +37
-2
lines changed Original file line number Diff line number Diff line change 77 - master
88
99jobs :
10- test :
10+ setup :
1111 runs-on : ubuntu-20.04
1212 env :
1313 MIX_ENV : test
4343
4444 - run : mix compile --warnings-as-errors
4545 if : ${{ matrix.lint }}
46-
46+ test :
47+ needs : setup
48+ runs-on : ubuntu-20.04
49+ env :
50+ MIX_ENV : test
51+ strategy :
52+ fail-fast : false
53+ matrix :
54+ include :
55+ - pair :
56+ elixir : 1.11.4
57+ otp : 23.2.7
58+ - pair :
59+ elixir : 1.13.3
60+ otp : 24.2.2
61+ lint : lint
62+ steps :
63+ - run : mix test
64+ test_cowboy_latest :
65+ needs : setup
66+ runs-on : ubuntu-20.04
67+ env :
68+ MIX_ENV : test
69+ strategy :
70+ fail-fast : false
71+ matrix :
72+ include :
73+ - pair :
74+ elixir : 1.11.4
75+ otp : 23.2.7
76+ - pair :
77+ elixir : 1.13.3
78+ otp : 24.2.2
79+ lint : lint
80+ steps :
81+ - run : mix deps.unlock cowboy && mix deps.update cowboy
4782 - run : mix test
You can’t perform that action at this time.
0 commit comments