Skip to content

ci: update matrix

ci: update matrix #275

Workflow file for this run

name: elixir
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['26', 'latest']
elixir: ['1.17', '1.18', 'latest']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test