Current section
Files
Jump to
Current section
Files
priv/github/ci.yml
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-24.04
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.15"
otp: "25.3.2.21"
- pair:
elixir: "1.18.4-otp-27"
otp: "28.0"
lint: lint
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@main
with:
otp-version: ${{ matrix.pair.otp }}
elixir-version: ${{ matrix.pair.elixir }}
version-type: strict
- uses: actions/cache@v4
with:
path: deps
# cache per OTP
key: mix-otp-${{ matrix.pair.otp }}-deps-${{ hashFiles('**/mix.lock') }}
- 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 --no-optional-deps --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test --slowest 5
if: ${{ ! matrix.lint }}
- run: mix test --slowest 5 --warnings-as-errors
if: ${{ matrix.lint }}