Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,10 @@ jobs:

- name: "Run linters and formatters"
run: "uvx nox --session format lint"

- name: "Check for any unstaged changes"
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "#### Format or Lint changes found. Please run 'uvx nox' locally and push the changes." >> $GITHUB_STEP_SUMMARY
exit 1
fi