Remove unless from codebases (#194) #764
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', '1.17.0-rc.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 |