Skip to content

Bump Elixir/Erlang and fix warnings #33

Bump Elixir/Erlang and fix warnings

Bump Elixir/Erlang and fix warnings #33

Workflow file for this run

name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-24.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['25.3']
elixir: ['1.14']
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
env:
MIX_ENV: test
- run: mix deps.compile
env:
MIX_ENV: test
- run: mix format --check-formatted
- run: mix test