This repository was archived by the owner on Sep 12, 2026. It is now read-only.
doc: why the extension commits still replicate up front #47
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: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: rust-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Test | |
| run: cargo test --release --workspace | |
| - name: Clippy | |
| run: cargo clippy --release --workspace --all-targets -- -D warnings | |
| - name: Rustdoc | |
| env: | |
| RUSTDOCFLAGS: -D warnings | |
| run: cargo doc --release --workspace --no-deps |