Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilJl authored Oct 23, 2024
1 parent 206aff9 commit 8315519
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/autopep8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
if [[ `git status --porcelain` ]]; then
git status
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "Auto-format Python code with autopep8"
git push
Expand Down

0 comments on commit 8315519

Please sign in to comment.