Skip to content

Merge pull request #238 from josevalim/patch-1 #823

Merge pull request #238 from josevalim/patch-1

Merge pull request #238 from josevalim/patch-1 #823

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
mix_test:
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.11.4"
otp: "22.x"
- pair:
elixir: "1.15.1"
otp: "25.x"
lint: lint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: deps
key: deps-${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: deps-${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-
- uses: actions/cache@v3
with:
path: _build
key: build-${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: build-${{ runner.os }}-${{ matrix.pair.otp }}-${{ matrix.pair.elixir }}-
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- name: Install Dependencies
run: mix deps.get
- 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 }}
- name: Run Credo
run: mix credo
if: ${{ matrix.lint }}
- name: Run Tests
run: mix test
if: ${{ ! matrix.lint }}
- name: Run Tests
run: mix test --warnings-as-errors
if: ${{ matrix.lint }}