Skip to content

Fix overzealous html decoding in mistune 2.x #144

Fix overzealous html decoding in mistune 2.x

Fix overzealous html decoding in mistune 2.x #144

Workflow file for this run

name: tests
on:
push:
branches-ignore:
- 'wip-*'
paths-ignore:
- 'docs/**'
pull_request:
branches-ignore:
- 'wip-*'
paths-ignore:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 6
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["2.7", "3.7", "3.8", "3.9", "3.10", "pypy3"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
- name: Test with Python ${{ matrix.python }} on ${{ matrix.os }}
run: pytest
- name: Report coverage
run: pytest --cov=mistune --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.14
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: GitHub