Skip to content

Configure Renovate #120

Configure Renovate

Configure Renovate #120

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
test:
name: mix test (Elixir ${{ matrix.elixir }} OTP ${{ matrix.otp }})
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.11.x
otp: 21.x
os: ubuntu-20.04
- elixir: 1.11.x
otp: 22.x
os: ubuntu-20.04
- elixir: 1.11.x
otp: 23.x
os: ubuntu-20.04
- elixir: 1.12.x
otp: 22.x
os: ubuntu-20.04
- elixir: 1.12.x
otp: 23.x
os: ubuntu-20.04
- elixir: 1.12.x
otp: 24.x
os: ubuntu-20.04
- elixir: 1.13.x
otp: 22.x
os: ubuntu-20.04
- elixir: 1.13.x
otp: 23.x
os: ubuntu-20.04
- elixir: 1.13.x
otp: 24.x
os: ubuntu-20.04
- elixir: 1.14.x
otp: 23.x
os: ubuntu-20.04
- elixir: 1.14.x
otp: 24.x
os: ubuntu-20.04
- elixir: 1.14.x
otp: 25.x
os: ubuntu-20.04
- elixir: 1.15.x
otp: 24.x
os: ubuntu-20.04
- elixir: 1.15.x
otp: 25.x
os: ubuntu-20.04
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup cache
uses: actions/[email protected]
with:
key: ${{ github.job }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock') }}-1
path: _build
- name: Install runtime
uses: erlef/[email protected]
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Install Dependencies
run: mix deps.get
- name: Run tests
run: mix test