Skip to content

Introduce PipelineTag, which allows to notify pipeline binding (#441) #2848

Introduce PipelineTag, which allows to notify pipeline binding (#441)

Introduce PipelineTag, which allows to notify pipeline binding (#441) #2848

Workflow file for this run

name: Checks
on: [push, pull_request]
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy
- run:
cargo test --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli"
fmt:
name: Rustfmt
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: rustfmt
rustflags: --profile minimal
- run: cargo fmt --all -- --check