Skip to content

WIP

WIP #70

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint:
name: Lint
uses: lexmag/elixir-actions/.github/workflows/lint.yml@v1
test:
name: Test suite
runs-on: ubuntu-20.04
strategy:
matrix:
versions:
- otp: 18.3
elixir: 1.4
- otp: 24
elixir: 1.14
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- name: Set up Elixir environment
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.versions.elixir }}
otp-version: ${{ matrix.versions.otp }}
- name: Install dependencies
run: mix deps.get --only test
- name: Run tests
run: mix test