manually specified all steps in linting workflow

This commit is contained in:
Tristan Lee
2023-08-07 20:17:59 -05:00
parent 39f7dd0997
commit a89925b99e

View File

@@ -7,7 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run isort
uses: isort/isort-action@v1
- name: Run black
uses: psf/black@stable
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Lint with Black
run: |
pip install black
black --check .
- name: Lint with isort
run: |
pip install isort
isort --check --profile=black .