Skip to content

Refactor CI workflow #1

Refactor CI workflow

Refactor CI workflow #1

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
test:
name: Elixir ${{ matrix.pair.elixir }} OTP ${{ matrix.pair.otp }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
include:
- pair:
elixir: "1.13"
otp: "24.3.4.10"
- pair:
elixir: "1.17"
otp: "27.0.1"
steps:
- uses: actions/checkout@v4
- uses: CargoSense/setup-elixir-project@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
build-flags: "--warnings-as-errors"
- run: mix format --check-formatted
- run: mix test