Skip to content

Commit

Permalink
fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Aug 12, 2023
1 parent a30534b commit cad66d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,15 @@ jobs:
path: |
dist/*.whl
formatters: # This job can be run locally with the `format_all.bat` script
# This job can be run locally with the `format_all.bat` script
formatters:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7' # We only need to target the oldest supported version here
# This job only needs to target the oldest supported version (black@stable supports Python >=3.8)
python-version: '3.8'
- run: pip install isort pycln
- run: pycln . --config=pycln.toml --check
- run: isort . --diff --check-only
Expand Down

0 comments on commit cad66d3

Please sign in to comment.