Skip to content

Commit

Permalink
Adds Elixir 1.15 to CI matrix (#7)
Browse files Browse the repository at this point in the history
* Adds elixir 1.15 to CI matrix
  • Loading branch information
Efesto authored Jun 20, 2023
1 parent 3e12f78 commit c3226bc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
elixir: ["1.14.3"]
otp: ["23.3", "24.3.4", "25.2.3"]
elixir: ["1.14.3", "1.15.0"]
otp: ["24.3.4", "25.2.3"]
include:
- elixir: "1.14.3"
otp: "23.3"
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
Expand All @@ -30,7 +33,7 @@ jobs:
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
run: mix deps.get --check-locked
- name: Compile
run: mix compile --warnings-as-errors
- name: Credo check
Expand Down

0 comments on commit c3226bc

Please sign in to comment.