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
6 changes: 6 additions & 0 deletions .github/workflows/build-and-test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ env:
--no-transfer-progress
--fail-fast

concurrency:
# One group per PR, or per ref for branch pushes.
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# Cancel in-progress runs for PRs only, so release branch builds always complete.
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
check-format:
name: "Check if code needs formatting"
Expand Down
Loading