Skip to content

Commit a4b8e6d

Browse files
committed
Restore the cargo test check for branch protection
The main branch ruleset requires a status check named exactly `cargo test`. This PR had added a Windows build matrix to the test-rust job, which renamed its check context to `cargo test (ubuntu-latest)` and `cargo test (windows-latest)` and left the required `cargo test` context unreported, so the PR stayed blocked with "Expected, waiting for status to be reported". Revert test-rust to its Linux-only form so it emits the `cargo test` context again. Windows coverage remains through the axum-native, cloudflare, and CLI jobs.
1 parent b502592 commit a4b8e6d

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,8 @@ on:
1111

1212
jobs:
1313
test-rust:
14-
name: cargo test (${{ matrix.os }})
15-
runs-on: ${{ matrix.os }}
16-
strategy:
17-
fail-fast: false
18-
matrix:
19-
os: [ubuntu-latest, windows-latest]
14+
name: cargo test
15+
runs-on: ubuntu-latest
2016
steps:
2117
- uses: actions/checkout@v4
2218

0 commit comments

Comments
 (0)