Skip to content

Make package PEP 561 compliant; add typehint stub file #2

Make package PEP 561 compliant; add typehint stub file

Make package PEP 561 compliant; add typehint stub file #2

Workflow file for this run

name: Lint
on:
push:
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11.8
architecture: x64
- name: Checkout
uses: actions/checkout@v3
- name: Install mypy
run: pip install mypy
- name: Install package
run: python setup.py bdist_wheel && pip install dist/crc32c*.whl
- name: Run mypy
run: mypy --strict test/test_crc32c.py