Skip to content

Commit

Permalink
Downgrade required elixir version to 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Argonus committed Dec 20, 2023
1 parent c867323 commit 3eb6c19
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 41 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,15 @@ jobs:
runs-on: ubuntu-20.04

strategy:
fail-fast: false
matrix:
pair:
- elixir: 1.15
otp: 26.2
- elixir: 1.14
otp: 25.3
- elixir: 1.13
otp: 24.3
- elixir: 1.12
otp: 23.3
- elixir: 1.11
otp: 22.3
otp: 25.3

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0
uses: erlef/setup-beam@v1
with:
elixir-version: '1.15.2'
otp-version: '26.0'
elixir-version: 1.13
otp-version: 25.3
- name: Install dependencies
run: mix deps.get
- name: Run tests
Expand Down
12 changes: 6 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule TestcontainersElixir.MixProject do
version: @version,
description:
"Testcontainers is an Elixir library that supports ExUnit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.",
elixir: "~> 1.11",
elixir: "~> 1.13",
source_url: @source_url,
homepage_url: @source_url,
aliases: aliases(),
Expand Down Expand Up @@ -65,14 +65,14 @@ defmodule TestcontainersElixir.MixProject do
# docker api
{:ex_docker_engine_api, "~> 1.43"},
# ecto module
{:ecto_sql, "~> 3.10", optional: true},
{:ecto, "~> 3.10", optional: true},
{:ecto_sql, "~> 3.3", optional: true},
{:ecto, "~> 3.3", optional: true},
# mysql
{:myxql, "~> 0.6.0", only: [:dev, :test]},
{:myxql, "~> 0.4", only: [:dev, :test]},
# postgres
{:postgrex, "~> 0.17", only: [:dev, :test]},
{:postgrex, "~> 0.14", only: [:dev, :test]},
# redis
{:redix, "~> 1.2", only: [:dev, :test]},
{:redix, "~> 1.0", only: [:dev, :test]},
# ceph and minio
{:ex_aws, "~> 2.1", only: [:dev, :test]},
{:ex_aws_s3, "~> 2.0", only: [:dev, :test]},
Expand Down
Loading

0 comments on commit 3eb6c19

Please sign in to comment.