Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show diffs introduced by running pre-commit (especially black) #34

Merged
merged 6 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files
run: pre-commit run --all-files --show-diff-on-failure
4 changes: 2 additions & 2 deletions build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
default: '3.11'
package-prefix:
description: |
The prefix (or name) of your pacakge (if applicable) to use
The prefix (or name) of your package (if applicable) to use
for GitHub releases
required: true
default: ""
Expand Down Expand Up @@ -65,7 +65,7 @@ runs:
- name: Pre-commit hooks
shell: bash
run: |
pre-commit run --all-files
pre-commit run --all-files --show-diff-on-failure
- name: Run pytest
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion release-gh/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
default: '3.11'
package-prefix:
description: |
The prefix (or name) of your pacakge (if applicable) to use
The prefix (or name) of your package (if applicable) to use
for GitHub releases
required: true
default: ""
Expand Down
Loading