docs: align review guide gates (#121) #138
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: rust | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| rust: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: node scripts/verify-course-links.mjs | |
| - run: node scripts/verify-manifest-consistency.mjs | |
| - run: node scripts/verify-cargo-examples.mjs | |
| - run: node scripts/verify-chapter-anatomy.mjs | |
| - run: node scripts/verify-review-packet-coverage.mjs | |
| - run: node scripts/verify-editorial-status.mjs | |
| - run: cargo fmt --check | |
| - run: cargo clippy --all-targets --all-features -- -D warnings | |
| - run: cargo test --all-targets | |
| - run: cargo test --doc | |
| - run: cargo bench --all-targets |