Skip to content

Commit

Permalink
Use same version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Dec 21, 2023
1 parent 921fb5f commit 1c3176c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/black.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install black
run: pip install black
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run black checks
run: black --check .
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
with:
python-version: 3.11
- name: Install dependencies
run: pip install flake8
run: pip install -r requirements.txt
- name: Run flake8 checks
run: flake8
4 changes: 2 additions & 2 deletions .github/workflows/isort.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install isort
run: pip install isort[colors]
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run isort checks
run: isort . --check --diff

0 comments on commit 1c3176c

Please sign in to comment.