We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094defc commit c6afd6fCopy full SHA for c6afd6f
.github/workflows/ci.yml
@@ -1,8 +1,8 @@
1
name: CI
2
3
env:
4
- ELIXIR_VERSION: "1.14"
5
- OTP_VERSION: "25.1"
+ ELIXIR_VERSION: "1.16"
+ OTP_VERSION: "26"
6
7
on:
8
push:
@@ -18,11 +18,16 @@ jobs:
18
name: Test OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
19
strategy:
20
matrix:
21
- otp: ["24.3", "25.1"]
22
- elixir: ["1.13", "1.14"]
23
- exclude:
24
- - otp: "25.1"
25
- elixir: "1.13"
+ include:
+ - { elixir: 1.14, otp: 23 }
+ - { elixir: 1.14, otp: 24 }
+ - { elixir: 1.14, otp: 25 }
+ - { elixir: 1.15, otp: 24 }
26
+ - { elixir: 1.15, otp: 25 }
27
+ - { elixir: 1.15, otp: 26 }
28
+ - { elixir: 1.16, otp: 24 }
29
+ - { elixir: 1.16, otp: 25 }
30
+ - { elixir: 1.16, otp: 26 }
31
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
0 commit comments