Skip to content

Commit

Permalink
fix: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Timmer committed Jun 5, 2024
1 parent be16e6b commit 4bca93c
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ jobs:
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["22.1", "23.3", "24.0"]
elixir: ["1.10.4", "1.11.4", "1.12.1"]

otp: ["24.2", "25.3", "26.2"]
elixir: ["1.14.5", "1.15.6", "1.16.1"]
steps:
- uses: actions/checkout@v2
- name: Set up Elixir
uses: erlef/setup-beam@v1
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
Expand All @@ -28,7 +26,5 @@ jobs:
path: deps
key: ${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ matrix.otp }}-${{ matrix.elixir }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- run: mix deps.get
- run: mix test

0 comments on commit 4bca93c

Please sign in to comment.