Skip to content

Commit

Permalink
Bump elixir
Browse files Browse the repository at this point in the history
  • Loading branch information
samhamilton committed Jan 1, 2025
1 parent ca3821d commit c06cbc7
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: "27.x"
elixir-version: "1.17.x"
elixir-version: "1.18.x"
- uses: actions/cache@v4
with:
path: |
Expand All @@ -36,6 +36,22 @@ jobs:
- run: elixir --logger-sasl-reports true -S mix coveralls.json
- uses: codecov/codecov-action@v5

elixir_1_18:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: [25.x, 26.x, 27.x]
elixir: [1.18.x]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix do deps.get, compile --all-warnings --warnings-as-errors
- run: mix test

elixir_1_17:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
Expand Down

0 comments on commit c06cbc7

Please sign in to comment.