Change summary
.github/workflows/run_tests.yml | 2 +-
tooling/xtask/src/tasks/workflows/run_tests.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Detailed changes
@@ -198,7 +198,7 @@ jobs:
clippy_linux:
needs:
- orchestrate
- if: needs.orchestrate.outputs.run_tests == 'true' && github.event_name != 'merge_group'
+ if: needs.orchestrate.outputs.run_tests == 'true'
runs-on: namespace-profile-16x32-ubuntu-2204
env:
CC: clang
@@ -52,7 +52,7 @@ pub(crate) fn run_tests() -> Workflow {
.and_not_in_merge_queue()
.guard(clippy(Platform::Windows, None)),
should_run_tests
- .and_not_in_merge_queue()
+ .and_always()
.guard(clippy(Platform::Linux, None)),
should_run_tests
.and_not_in_merge_queue()