Skip to content

Commit

Permalink
Use Elixir versions 1.14 to 1.17 in CI (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
janpieper authored Jul 31, 2024
1 parent 5aef081 commit f0eee3f
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,28 @@ jobs:
strategy:
matrix:
include:
- elixir: '1.8'
otp: '20'
- elixir: '1.8'
otp: '21'
- elixir: '1.9'
otp: '21'
- elixir: '1.9'
otp: '22'
- elixir: '1.10'
otp: '21.0'
- elixir: '1.10'
otp: '22.0'
- elixir: '1.11'
otp: '23.0'
- elixir: '1.14'
otp: '25.0'
- elixir: '1.15'
otp: '25.0'
- elixir: '1.15'
otp: '26.0'
- elixir: '1.16'
otp: '26.0'
- elixir: '1.17'
otp: '26.0'
- elixir: '1.17'
otp: '27.0'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}

- name: Restore dependencies cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
Expand Down

0 comments on commit f0eee3f

Please sign in to comment.