Skip to content

Commit

Permalink
build(deps): supports elixir/erlang 1.15/25
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Jun 6, 2024
1 parent 72a08d0 commit 93f76c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ jobs:
matrix:
include:
- elixir: '1.16'
otp: '26.2.5'
erlang: '26.2.5'
lint: true
- elixir: '1.15'
erlang: '25.3.2.12'
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
otp-version: ${{ matrix.erlang }}
elixir-version: ${{ matrix.elixir }}
- run: mix deps.get --check-locked
- run: mix format --check-formatted
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule Tower.MixProject do
app: :tower,
description: @description,
version: @version,
elixir: "~> 1.16",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
Expand Down

0 comments on commit 93f76c6

Please sign in to comment.