Skip to content

Commit

Permalink
Add OTP 27 and Elixir 1.17 to the CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Jun 14, 2024
1 parent 27d6358 commit 26d6176
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ jobs:
strategy:
fail-fast: false
matrix:
elixir: ["1.16", "1.13"]
otp: ["26.2", "25.3", "22.3"]
elixir: ["1.17", "1.16", "1.13"]
otp: ["27.0", "26.2", "25.3", "22.3"]
parser: [fast_html, html5ever, mochiweb]
exclude:
- elixir: "1.17"
otp: "22.3"

- elixir: "1.17"
otp: "25.3"

- elixir: "1.16"
otp: "22.3"

Expand All @@ -27,8 +33,11 @@ jobs:
- elixir: "1.13"
otp: "26.2"

- elixir: "1.13"
otp: "27.0"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: erlef/setup-beam@v1
with:
Expand All @@ -37,7 +46,7 @@ jobs:

- name: Check format
run: mix format --check-formatted
if: matrix.elixir == '1.16'
if: matrix.elixir == '1.17'

- name: Install dependencies
run: mix deps.get
Expand Down

0 comments on commit 26d6176

Please sign in to comment.