Skip to content

Update github actions #8

Update github actions

Update github actions #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-24.04
env:
MIX_ENV: test
strategy:
matrix:
include:
- pair:
elixir: "1.15"
otp: "24"
- pair:
elixir: "1.19.2-otp-28"
otp: "28.1.1"
lint: lint
steps:
- uses: actions/checkout@v6
- uses: erlef/setup-beam@main
with:
otp-version: ${{ matrix.pair.otp }}
elixir-version: ${{ matrix.pair.elixir }}
- uses: actions/cache@v5
with:
path: deps
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 }}