fix default parameter in avg_pool #314
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: Lint | |
on: [push] | |
jobs: | |
mypy: | |
name: Python Type Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install mypy | |
run: pip install mypy | |
pip install --upgrade -r requirements.txt -f https://download.pytorch.org/whl/torch_stable.html | |
- name: Run mypy | |
run: mypy -p frontend |