Skip to content

Add Cobertura docs to README.md #174

Add Cobertura docs to README.md

Add Cobertura docs to README.md #174

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
name: Run Tests
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ['20.3']
elixir: ['1.4', '1.5', '1.6', '1.7']
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
- run: mix deps.get
- run: mix coveralls.github