Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/pr-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
uses: astral-sh/setup-uv@v6
- name: Check API breaking changes
run: |
if ! uvx griffe check --search src --format github strands --against "${{ github.event.pull_request.base.sha || github.event.before || 'HEAD' }}"; then
echo "Breaking API changes detected"
if ! uvx griffe check --search src --format github strands --against "main"; then
echo "Potential API changes detected (review if actually breaking)"
exit 1
fi

Loading