Bump ex_doc from 0.38.2 to 0.39.2 #1025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |