Skip to content

Simplify CI

Simplify CI #103

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
elixir: "1.14.2"
otp: "25.0"
lint: true
- os: ubuntu-18.04
elixir: "1.7.4"
otp: "19.3.6.13"
steps:
- name: Check out this repository
uses: actions/checkout@v4
- name: Set up Erlang and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Install dependencies
run: mix deps.get --only $MIX_ENV
- name: Check that code is formatted
run: mix format --check-formatted
if: ${{ matrix.lint }}
- name: Check that there are no unused dependencies in mix.lock
run: mix do deps.get, deps.unlock --check-unused
if: ${{ matrix.lint }}
- name: Compile with --warnings-as-errors
run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- name: Run tests
run: mix test