Skip to content

Commit

Permalink
Merge pull request #164 from leandrocp/lp-test-min-versions
Browse files Browse the repository at this point in the history
Bump minimum Elixir version to 1.14
  • Loading branch information
kipcole9 authored Sep 10, 2024
2 parents c15c92f + e0517d7 commit b61c41b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,13 @@ jobs:
# Specify the OTP and Elixir versions to use when building
# and running the workflow steps.
matrix:
otp: ['27.0'] # Define the OTP version [required]
elixir: ['1.17.1-otp-27'] # Define the elixir version [required]
include:
# minimum required versions
- otp: "24"
elixir: "1.14.0"
# latest
- otp: "27"
elixir: "1.17.2-otp-27"
steps:
# Step: Setup Elixir + Erlang image as the base.
- name: Set up Elixir
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule Image.MixProject do
[
app: String.to_atom(@app_name),
version: @version,
elixir: "~> 1.12",
elixir: "~> 1.14",
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
source_url: "https://github.com/kipcole9/image",
Expand Down

0 comments on commit b61c41b

Please sign in to comment.