Skip to content

build(deps): supports elixir/erlang 1.13/23 #49

build(deps): supports elixir/erlang 1.13/23

build(deps): supports elixir/erlang 1.13/23 #49

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
main:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- elixir: '1.16'
erlang: '26.2.5'
lint: true
- elixir: '1.15'
erlang: '25.3.2.12'
- elixir: '1.14'
erlang: '24.3.4.17'
- elixir: '1.13'
erlang: '23.3.4.20'
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.erlang }}
elixir-version: ${{ matrix.elixir }}
- run: mix deps.get --check-locked
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test