Skip to content

feat: add lossy option #8

feat: add lossy option

feat: add lossy option #8

Workflow file for this run

on: push
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24.3', '25.3', '26.2']
elixir: ['1.13.4', '1.14.5', '1.15.7', '1.16.2']
exclude:
- otp: '26.2'
elixir: '1.13.4'
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