Skip to content

Bump excoveralls from 0.17.0 to 0.17.1 #116

Bump excoveralls from 0.17.0 to 0.17.1

Bump excoveralls from 0.17.0 to 0.17.1 #116

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ["25.1"]
elixir: ["1.14"]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- uses: actions/cache@v3
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Run Formatter
run: mix format --check-formatted
- name: Run Linter
run: mix credo
- name: Run Hex Audit
run: mix hex.audit
- name: Generate docs
run: mix docs
- name: Compile
run: mix compile --warnings-as-errors
- name: Run Tests
run: mix coveralls.github