Fix TypeError: '>' not supported between instances of 'float' and 'NoneType' in http
#56
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: Linting check | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.8' | |
| - name: Setup poetry | |
| uses: abatilo/[email protected] | |
| with: | |
| poetry-version: 1.3.2 | |
| - name: Install dependencies | |
| run: poetry install -E crypto | |
| - name: Lint with flake8 | |
| run: poetry run flake8 |