Skip to content

Bump ex_doc from 0.30.2 to 0.30.3 (#96) #238

Bump ex_doc from 0.30.2 to 0.30.3 (#96)

Bump ex_doc from 0.30.2 to 0.30.3 (#96) #238

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
container:
image: elixir:1.10.4-slim
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Run Tests
run: mix test
- name: Create Cache Dir
run: mkdir -p priv/plts
- name: Cache Dialyzer PLT
uses: actions/cache@v3
with:
path: priv/plts
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
- name: Check Typespecs
run: mix dialyzer --halt-exit-status --format term