From 44748227ab73ceaad28b2ab5d9c2cbfab9a47aeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 11 Dec 2022 12:36:07 +0200 Subject: [PATCH] ci: Also check running with --no-default-features --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23ed9a3..1ffabe9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,9 @@ jobs: - name: Check default-features run: cargo check + - name: Check no default-features + run: cargo check --no-default-features + - name: Check async-tls run: cargo check --features async-tls