Honor block-level tags registered after md_in_html loads. #1106
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
| # This workflow will install dependencies and run tests/linters with a matrix of tox environments. | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 4 | |
| matrix: | |
| tox-env: [py311, py312, py313, py314, pypy311, pygments] | |
| include: | |
| - tox-env: py311 | |
| python-version: '3.11' | |
| - tox-env: py312 | |
| python-version: '3.12' | |
| - tox-env: py313 | |
| python-version: '3.13' | |
| - tox-env: py314 | |
| python-version: '3.14' | |
| - tox-env: py315 | |
| python-version: '3.15' | |
| - tox-env: pypy311 | |
| python-version: pypy-3.11 | |
| - tox-env: pygments | |
| python-version: '3.11' | |
| env: | |
| TOXENV: ${{ matrix.tox-env }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| allow-prereleases: true | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install libtidy-dev | |
| python -m pip install --upgrade pip tox coverage codecov | |
| - name: Run tox | |
| run: python -m tox | |
| - name: Upload Results | |
| if: success() | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| file: ./coverage.xml | |
| flags: unittests | |
| name: ${{ matrix.tox-env }} | |
| fail_ci_if_error: false | |
| lint: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| max-parallel: 4 | |
| matrix: | |
| tox-env: [flake8, pep517check, checklinks, checkspelling] | |
| env: | |
| TOXENV: ${{ matrix.tox-env }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip tox | |
| if [[ "$TOXENV" == 'checkspelling' ]]; then sudo apt-get install aspell aspell-en; fi | |
| - name: Run tox | |
| run: python -m tox |