Get rid of pop-ups on page loading when logging in #161
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 + Format | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
paths: | |
- "**.py" | |
- "pyproject.toml" | |
- "setup.cfg" | |
- ".github/workflows/lint-format.yml" | |
pull_request: | |
paths: | |
- "**.py" | |
- "pyproject.toml" | |
- "setup.cfg" | |
- ".github/workflows/lint-format.yml" | |
jobs: | |
isort: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: isort | |
uses: isort/[email protected] | |
with: | |
requirements-files: "requirements.txt" | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: black | |
uses: psf/black@stable | |
flake8: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: flake8 | |
uses: py-actions/flake8@v2 |