Skip to content

1.0.0-alpha.0

1.0.0-alpha.0 #678

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