Skip to content

Fix ci

Fix ci #41

Workflow file for this run

on:
push:
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- otp: 25.1
elixir: 1.15.4
- otp: 21.3
elixir: 1.11.4
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test