We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5a26d commit 3522556Copy full SHA for 3522556
1 file changed
.github/workflows/main.yml
@@ -7,24 +7,23 @@ on:
7
jobs:
8
test:
9
name: Test (Elixir ${{ matrix.elixir }}, OTP ${{ matrix.erlang }})
10
- runs-on: ${{ matrix.runner }}
+ runs-on: ubuntu-latest
11
strategy:
12
fail-fast: false
13
matrix:
14
include:
15
- - erlang: "27.0"
16
- elixir: "1.17"
17
- runner: ubuntu-latest
+ - erlang: "28.1"
+ elixir: "1.19"
18
lint: true
19
coverage: true
20
report: true
21
dialyzer: true
22
- - erlang: "25.3"
+ # One version down.
+ - erlang: "27.2"
23
+ elixir: "1.18"
24
+ # Oldest version. We technically support OTP 23 but hard to test in CI
25
+ - erlang: "24.3"
26
elixir: "1.14"
- - erlang: "23.3.1"
- elixir: "1.11.4"
27
- runner: ubuntu-20.04
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
MIX_ENV: test
0 commit comments