Update dependency excoveralls to ~> 0.18 #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
env: | |
MIX_ENV: test | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup elixir | |
uses: actions/[email protected] | |
with: | |
elixir-version: 1.9.x | |
otp-version: 22.x | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Get deps cache | |
uses: actions/cache@v2 | |
with: | |
path: deps/ | |
key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-deps- | |
- name: Get build cache | |
uses: actions/cache@v2 | |
with: | |
path: _build/test/ | |
key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-build- | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
mix compile | |
- name: Run Tests | |
run: | | |
mix coveralls.github |