Skip to content

Commit

Permalink
Add OTP 27 and Elixir 1.17 to the CI matrix (#576)
Browse files Browse the repository at this point in the history
* Add OTP 27 and Elixir 1.17 to the CI matrix

* Update get-cmake GH Action

* Remove pair that is not available
  • Loading branch information
philss authored Jun 14, 2024
1 parent 27d6358 commit 2bb8c25
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,33 @@ 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"

- elixir: "1.16"
otp: "27.0"

- elixir: "1.13"
otp: "25.3"

- 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 +49,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 All @@ -46,7 +58,7 @@ jobs:
run: mix deps.unlock --check-unused

- name: Install CMake
uses: lukka/get-cmake@v3.26.4
uses: lukka/get-cmake@latest
if: matrix.parser == 'fast_html'

- name: Run test
Expand Down

0 comments on commit 2bb8c25

Please sign in to comment.