This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
build(deps): bump idna from 3.4 to 3.7 in /backend (#167) #668
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-Python | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10.13" | |
- run: pip install -r ./backend/requirements.txt | |
- run: black --check --diff ./backend/ | |
- run: isort --profile black --check --diff ./backend/ | |
- run: mypy ./backend/ | |
- run: pylint --rcfile ./backend/pylintrc -E ./backend/ | |
#- run: pytest ./backend/ |