Skip to content

Commit

Permalink
Update elixir versions to test
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Jun 13, 2024
1 parent 03a8e8b commit 059e0a7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_dependents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: '1.13'
otp-version: '24'
elixir-version: '1.17'
otp-version: '27'

- name: Checkout absinthe
uses: actions/checkout@v4
Expand Down
35 changes: 16 additions & 19 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,21 @@ jobs:
strategy:
matrix:
elixir:
- "1.13"
- "1.14"
- "1.15"
- '1.15'
- '1.16'
- '1.17'
otp:
- "24"
- "25"
- "26"
include:
- elixir: "1.15"
otp: "26"
format: true
- '24'
- '25'
- '26'
- '27'
exclude:
- otp: 26
elixir: 1.13
- otp: 26
elixir: 1.14
- otp: 24
elixir: 1.17
- otp: 27
elixir: 1.15
- otp: 27
elixir: 1.16

steps:
- name: Checkout
Expand Down Expand Up @@ -57,7 +56,6 @@ jobs:

- name: Check Formatting
run: mix format --check-formatted
if: ${{ matrix.format }}

- name: Run unit tests
run: |
Expand All @@ -77,10 +75,9 @@ jobs:
path: |
priv/plts
key: "v1-${{ runner.os }}-\
erlang-${{ matrix.otp }}-\
elixir-${{ matrix.elixir }}-\
${{ hashFiles('mix.lock') }}"
erlang-${{ matrix.otp }}-\
elixir-${{ matrix.elixir }}-\
${{ hashFiles('mix.lock') }}"

- name: Run Dialyzer
run: mix dialyzer

0 comments on commit 059e0a7

Please sign in to comment.