Skip to content

Add renovate.json

Add renovate.json #110

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.7.x
os: ubuntu-18.04
otp: 19.x
- elixir: 1.7.x
otp: 20.x
- elixir: 1.7.x
otp: 21.x
- elixir: 1.7.x
otp: 22.x
- elixir: 1.8.x
otp: 20.x
- elixir: 1.8.x
otp: 21.x
- elixir: 1.8.x
otp: 22.x
- elixir: 1.9.x
otp: 20.x
- elixir: 1.9.x
otp: 21.x
- elixir: 1.9.x
otp: 22.x
- elixir: 1.10.x
otp: 21.x
- elixir: 1.10.x
otp: 22.x
- elixir: 1.11.x
otp: 21.x
- elixir: 1.11.x
otp: 22.x
- elixir: 1.11.x
otp: 23.x
- elixir: 1.12.x
otp: 22.x
- elixir: 1.12.x
otp: 23.x
- elixir: 1.12.x
otp: 24.x
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