Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Nov 13, 2024
1 parent 4428405 commit 4a8acde
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ jobs:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.8.2"
otp: "21.3.8.17"
- pair:
elixir: "1.17.3"
otp: "27.1"
# Oldest-supported Elixir/OTP versions.
- elixir: "1.13.4"
otp: "22.3.4.27"

# Latest-supported Elixir/OTP versions.
- elixir: "1.17.3"
otp: "27.1"
lint: lint
coverage: coverage
steps:
Expand All @@ -34,8 +35,8 @@ jobs:
- name: Install Erlang/OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.pair.otp }}
elixir-version: ${{ matrix.pair.elixir }}
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}

- name: Cache Mix dependencies
uses: actions/cache@v4
Expand All @@ -44,9 +45,9 @@ jobs:
deps
_build
key: |
${{ runner.os }}-mix-${{ matrix.pair.elixir }}-${{ matrix.pair.otp }}-${{ hashFiles('**/mix.lock') }}
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{ matrix.pair.elixir }}-${{ matrix.pair.otp }}-
${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-
- name: Fetch Mix dependencies
run: mix deps.get
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 BroadwayRabbitMQ.MixProject do
[
app: :broadway_rabbitmq,
version: @version,
elixir: "~> 1.8",
elixir: "~> 1.13",
name: "BroadwayRabbitMQ",
description: @description,
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 4a8acde

Please sign in to comment.