Skip to content

Commit

Permalink
Bump elixir version
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcrn committed Oct 29, 2023
1 parent 77e7807 commit a3be509
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,23 @@ jobs:
test:
strategy:
matrix:
otp: ['24.3.4.9', '25.3']
elixir: ['1.14.3']
runs-on: ubuntu-latest
otp: ["24.3", "25.3"]
elixir: ["1.13.4", "1.14.3", "1.15.7"]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- run: mix deps.get
- run: mix test
testolder:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ["23.3"]
elixir: ["1.11", "1.12", "1.3"]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Binance.MixProject do
[
app: :binance,
version: "2.0.0",
elixir: "~> 1.7",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
Expand Down

0 comments on commit a3be509

Please sign in to comment.