Skip to content

Commit

Permalink
Drop Elixir 1.9 support & Fix CI Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
maennchen committed Nov 14, 2022
1 parent fd2ff0c commit c3b511d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,25 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: ['21.3', '22.3', '23.3', '24.1']
elixir: ['1.9', '1.10', '1.12', '1.13']
otp: ['21.3', '22.3', '23.3', '24.1', '25.1']
elixir: ['1.10', '1.11', '1.12', '1.13', '1.14']
exclude:
- otp: '24.1'
elixir: '1.10'
- otp: '25.1'
elixir: '1.10'
- otp: '25.1'
elixir: '1.11'
- otp: '21.3'
elixir: '1.12'
- otp: '25.1'
elixir: '1.12'
- otp: '21.3'
elixir: '1.13'
- otp: '24.1'
elixir: '1.9'
- otp: '21.3'
elixir: '1.14'
- otp: '22.3'
elixir: '1.14'

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Crontab.Mixfile do
[
app: :crontab,
version: @version,
elixir: "~> 1.9",
elixir: "~> 1.10",
build_embedded:
Mix.env() == :prod or System.get_env("BUILD_EMBEDDED", "false") in ["1", "true"],
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit c3b511d

Please sign in to comment.