Skip to content

okay, so it works better but it isnt perfect. only apply it when we k… #672

okay, so it works better but it isnt perfect. only apply it when we k…

okay, so it works better but it isnt perfect. only apply it when we k… #672

Workflow file for this run

on: push
name: Build & Test
env:
MIX_ENV: test
jobs:
test:
runs-on: ubuntu-latest
name: Ex${{matrix.elixir}}/OTP${{matrix.otp}}
strategy:
matrix:
elixir: ['1.15.7', '1.16.0']
otp: ['25.1.2']
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 compile --warnings-as-errors
- run: mix test