Skip to content

Bump ex_doc from 0.29.4 to 0.31.1 #235

Bump ex_doc from 0.29.4 to 0.31.1

Bump ex_doc from 0.29.4 to 0.31.1 #235

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24']
elixir: ['1.12.3']
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Setup elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Install dependencies
run: mix deps.get
- name: Compile without warnings
run: mix compile --warnings-as-errors
- name: Run formatter
run: mix format --check-formatted
- name: Run tests
run: mix test
- name: Run coveralls
run: mix coveralls.github