fix: typing for Text.Parsec.Prim
and Text.Parsec.Char
#51
This file contains 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: Parsec CI | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install -e .[dev] | |
- run: coverage run setup.py test | |
- run: coverage report -m | |
- if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }} | |
run: mypy . | |