Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
fboundy committed Dec 22, 2024
1 parent 30b5885 commit ec9b026
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/black-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ jobs:
- name: Run isort
run: isort .

- name: Run Black Formatter
run: black --line-length 119 .
# - name: Run Black Formatter
# run: black --line-length 119 .

- name: Check for Changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "Automatically sorted imports with isort"
git push
else
echo "No changes to commit."

0 comments on commit ec9b026

Please sign in to comment.