Skip to content

[Snyk] Security upgrade urllib3 from 2.0.7 to 2.2.2 #90

[Snyk] Security upgrade urllib3 from 2.0.7 to 2.2.2

[Snyk] Security upgrade urllib3 from 2.0.7 to 2.2.2 #90

Workflow file for this run

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