Skip to content

Bump ex_doc from 0.34.1 to 0.34.2 #309

Bump ex_doc from 0.34.1 to 0.34.2

Bump ex_doc from 0.34.1 to 0.34.2 #309

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
container:
image: elixir:1.15-slim
steps:
- uses: actions/checkout@v4
- 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@v4
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