chore(deps): bump black from 19.10b0 to 24.3.0 #194
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
on: ["push", "pull_request"] | |
name: linting | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Run black | |
run: black --check scripts tests | |
- name: Run flake8 | |
run: flake8 scripts tests | |
- name: Run isort | |
run: isort --check-only --diff --recursive scripts tests |