ci: Update to actions/checkout v5 #1240
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: {} | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo check --workspace --all-features --all-targets | |
| check-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: cargo doc | |
| working-directory: ${{ matrix.subcrate }} | |
| env: | |
| RUSTDOCFLAGS: "-D rustdoc::broken_intra_doc_links" | |
| run: cargo doc --all-features --no-deps | |
| cargo-hack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: taiki-e/install-action@cargo-hack | |
| - name: cargo hack check | |
| working-directory: ${{ matrix.subcrate }} | |
| env: | |
| RUSTFLAGS: "-D unused_imports -D dead_code -D unused_variables" | |
| run: cargo hack check --each-feature --no-dev-deps --workspace | |
| test-versions: | |
| # Test against the stable, beta, and nightly Rust toolchains on ubuntu-latest. | |
| needs: check | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: [stable, beta, nightly] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| - run: cargo test --workspace --all-features | |
| test-msrv: | |
| needs: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/[email protected] | |
| - name: Remove the example crates to exclude effects to dependencies from them | |
| run: rm -r ./examples/* && cargo new --lib --edition 2021 examples/dummy | |
| - run: cargo update -p tokio --precise 1.38.1 | |
| - run: cargo update -p tokio-util --precise 0.7.11 | |
| - run: cargo update -p flate2 --precise 1.0.35 | |
| - run: cargo update -p once_cell --precise 1.20.3 | |
| - run: cargo update -p tracing-core --precise 0.1.33 | |
| - run: cargo update -p async-compression --precise 0.4.23 | |
| - run: cargo check -p tower-http --all-features | |
| style: | |
| needs: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --all --check | |
| deny-check: | |
| name: cargo-deny check | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.checks == 'advisories' }} | |
| strategy: | |
| matrix: | |
| checks: | |
| - advisories | |
| - bans licenses sources | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: EmbarkStudios/cargo-deny-action@v1 | |
| with: | |
| manifest-path: tower-http/Cargo.toml | |
| command: check ${{ matrix.checks }} | |
| cargo-public-api-crates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # Pinned version due to failing `cargo-public-api-crates`. | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly-2024-06-06 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install cargo-public-api-crates | |
| run: | | |
| cargo install --git https://github.com/davidpdrsn/cargo-public-api-crates | |
| - name: Build rustdoc | |
| run: | | |
| cargo rustdoc --all-features --manifest-path tower-http/Cargo.toml -- -Z unstable-options --output-format json | |
| - name: cargo public-api-crates check | |
| run: cargo public-api-crates --manifest-path tower-http/Cargo.toml --skip-build check |