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
10 changes: 9 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
name: Code checking and unit testing

on:
pull_request:
# main was never tested directly: the only trigger was a pull request, so
# anything that reached main by another route — a merge whose checks had not
# finished, a direct push — went unverified.
push:
branches: [ main ]
# No branch filter. Restricting to `branches: [main]` skipped every stacked
# pull request, because a PR based on another feature branch does not match.
# Those are exactly the changes that most want checking before the base lands.
pull_request:
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand Down
Loading