Skip to content

Commit

Permalink
limit CI to the last 3 releases of elixir and otp
Browse files Browse the repository at this point in the history
  • Loading branch information
aesmail committed Sep 1, 2023
1 parent cce2d27 commit 020302a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
strategy:
matrix:
otp: ['24', '25', '26']
elixir: ['1.11.4', '1.12.3', '1.13.4', '1.14.5', '1.15.5']
elixir: ['1.13.4', '1.14.5', '1.15.5']
# Exclude invalid combinations of Elixir and OTP
exclude:
- otp: '25'
elixir: ['1.11.4', '1.12.3']
elixir: '1.13.5'
- otp: '26'
elixir: ['1.11.4', '1.12.3', '1.13.4', '1.14.5']
elixir: '1.13.5'
- otp: '26'
elixir: '1.14.5'
# Include the release candidate for the next Elixir, but don't
# fail CI.
# include:
Expand Down

0 comments on commit 020302a

Please sign in to comment.