Skip to content

feature: specify piped function exclusions (#34) #127

feature: specify piped function exclusions (#34)

feature: specify piped function exclusions (#34) #127

Workflow file for this run

on: push
name: Build & Test
env:
MIX_ENV: test
jobs:
test:
runs-on: ubuntu-latest
name: Elixir ${{matrix.elixir}} | OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.15.8, 1.16.3, 1.17.3, 1.18.2]
otp: [26.2.5.7, 27.2.2]
exclude:
- elixir: 1.15.8
otp: 27.2.2
- elixir: 1.16.3
otp: 27.2.2
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix clean
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix test