[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #89
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: # yamllint disable-line rule:truthy | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install -r dev-requirements.txt | |
- name: black | |
run: | | |
make black | |
- name: isort | |
run: | | |
make isort | |
- name: pydocstyle | |
run: | | |
make pydocstyle | |
- name: flake8 | |
run: | | |
make flake8 | |
- name: mypy | |
run: | | |
make mypy | |
- name: pylint | |
run: | | |
make pylint |