Fix check for retransmission of discarded block segments #11
Workflow file for this run
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
name: Run PR linters | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
mypy: | |
name: Run mypy static type checker (optional) | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
cache: pip | |
cache-dependency-path: | | |
'pyproject.toml' | |
'requirements-dev.txt' | |
- run: pip install -r requirements-dev.txt -e . | |
- name: Run mypy and report | |
run: mypy --config-file pyproject.toml . |