Skip to content

fix: typing for Text.Parsec.Prim and Text.Parsec.Char #51

fix: typing for Text.Parsec.Prim and Text.Parsec.Char

fix: typing for Text.Parsec.Prim and Text.Parsec.Char #51

Workflow file for this run

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 .