Skip to content

v1.5.0

v1.5.0 #906

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.8", "1.16.3", "1.17.3", "1.18.2"]
otp: ["25.3.2", "26.2.5", "27.2.4"]
exclude:
- elixir: "1.15.8"
otp: "27.2.4"
- elixir: "1.16.3"
otp: "27.2.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 compile --warnings-as-errors
- run: mix test