From 48702413f3fa5509a6b5f3b08d1e58130e100311 Mon Sep 17 00:00:00 2001 From: metent Date: Mon, 30 Dec 2024 18:35:48 +0530 Subject: [PATCH] Add build checks (#491) --- .github/workflows/checks.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index aaa1b007..bcda73b1 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -3,6 +3,17 @@ name: Checks on: [push, pull_request] jobs: + check: + name: Check for build failures + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + toolchain: stable + - run: + cargo check --all --no-default-features --features="ntex/compio,ntex/cookie,ntex/url,ntex/compress,ntex/openssl,ntex/rustls,ntex/ws,ntex/brotli" + clippy: name: Clippy runs-on: ubuntu-latest