Skip to content

Bump ex_doc from 0.38.2 to 0.38.3 #1017

Bump ex_doc from 0.38.2 to 0.38.3

Bump ex_doc from 0.38.2 to 0.38.3 #1017

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
name: Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }} / ${{ matrix.parser }}
strategy:
fail-fast: false
matrix:
elixir: ["1.18.4", "1.15"]
otp: ["27.3", "24.2"]
parser: [fast_html, html5ever, mochiweb]
exclude:
- elixir: "1.18.4"
otp: "24.2"
- elixir: "1.15"
otp: "27.3"
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Check format
run: mix format --check-formatted
if: matrix.elixir == '1.18.4'
- name: Install dependencies
run: mix deps.get
- name: Check for unused dependencies
run: mix deps.unlock --check-unused
- name: Install CMake
uses: lukka/get-cmake@latest
if: matrix.parser == 'fast_html'
- name: Run test
run: |-
MIX_ENV=test mix test_${{ matrix.parser }}