From 4e024372b7adf04af46d63c64ddcefdf12227d33 Mon Sep 17 00:00:00 2001 From: Rishabh Das Date: Sun, 29 Dec 2024 00:42:17 +0530 Subject: [PATCH] Add build checks --- .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