Bump cryptography from 40.0.2 to 41.0.6 #419
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
# Github action that runs flake8 check | |
name: flake8-check | |
on: pull_request | |
jobs: | |
flake8-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Run flake8 | |
run: flake8 --ignore E501,F401,W503,E203,F811,E402 grants_tagger |