Skip to content

Bump ex_doc from 0.34.2 to 0.35.0 #27

Bump ex_doc from 0.34.2 to 0.35.0

Bump ex_doc from 0.34.2 to 0.35.0 #27

Workflow file for this run

---
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: 27
elixir-version: 1.17
- name: Install Dependencies
run: mix do deps.get, deps.compile
- name: Static Analysis
run: mix credo --strict
env:
MIX_ENV: test
- name: Run Tests
run: mix coveralls.github --trace
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}