We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cebe5b commit 259d99fCopy full SHA for 259d99f
1 file changed
.github/workflows/ci.yml
@@ -44,4 +44,23 @@ jobs:
44
- run: mix compile --warnings-as-errors
45
if: ${{ matrix.lint }}
46
47
+ - run: mix test
48
+ test_cowboy_latest:
49
+ runs-on: ubuntu-20.04
50
+ env:
51
+ MIX_ENV: test
52
+ strategy:
53
+ fail-fast: false
54
+ steps:
55
+ - uses: actions/checkout@v2
56
+
57
+ - uses: erlef/setup-beam@v1
58
+ with:
59
+ otp-version: 24.2.2
60
+ elixir-version: 1.13.3
61
62
+ - run: mix deps.unlock cowboy && mix deps.update cowboy && mix deps.get --only test
63
64
+ - run: mix deps.compile
65
66
- run: mix test
0 commit comments