Skip to content

Commit

Permalink
update CI according to docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
aesmail committed Sep 1, 2023
1 parent 020302a commit 862a6b7
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,25 @@ on:
jobs:
test:
name: Test ${{matrix.otp}} / Elixir ${{matrix.elixir}}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ['24', '25', '26']
elixir: ['1.13.4', '1.14.5', '1.15.5']
otp: ['22', '23', '24', '25']
elixir: ['1.11.4', '1.12.3', '1.13.4', '1.14.5', '1.15.5']
# Exclude invalid combinations of Elixir and OTP
exclude:
- otp: '25'
elixir: '1.13.5'
- otp: '26'
elixir: '1.13.5'
- otp: '26'
- otp: '22'
elixir: '1.14.5'
- otp: '22'
elixir: '1.15.5'
- otp: '23'
elixir: '1.15.5'
- otp: '25'
elixir: '1.11.4'
- otp: '25'
elixir: '1.12.3'
- otp: '25'
elixir: '1.13.4'
# Include the release candidate for the next Elixir, but don't
# fail CI.
# include:
Expand All @@ -30,7 +36,7 @@ jobs:
# experimental: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
Expand Down

0 comments on commit 862a6b7

Please sign in to comment.