Skip to content

Bump ex_doc from 0.29.4 to 0.35.1 #136

Bump ex_doc from 0.29.4 to 0.35.1

Bump ex_doc from 0.29.4 to 0.35.1 #136

Workflow file for this run

name: ci
on: push
jobs:
dialyzer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
key: dialyzer-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock') }}-1
path: |
_build
deps
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- run: mix deps.get
- run: mix compile
- run: mix dialyzer
strategy:
matrix:
elixir: ["1.11.x", "1.12.x", "1.13.x"]
otp: [22.x, 23.x, 24.x]
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
key: test-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock') }}-1
path: |
_build
deps
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- run: mix deps.get
- run: mix compile
- run: mix test
strategy:
matrix:
elixir: ["1.11.x", "1.12.x", "1.13.x"]
otp: [22.x, 23.x, 24.x]