From ec43bd6676549fb83eca78e9cdfd13af2ffe5016 Mon Sep 17 00:00:00 2001 From: Constantin Nickel Date: Thu, 15 Oct 2020 11:38:03 +0200 Subject: [PATCH] Add check for all features --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50ff6cb..91a68fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,8 +62,8 @@ jobs: - name: Check gio-runtime, async-tls run: cargo check --features gio-runtime,async-tls - - name: Check async-std-runtime, async-tls, async-native-tls, tokio-runtime, tokio-native-tls, gio-runtime - run: cargo check --features async-std-runtime,async-tls,async-native-tls,tokio-runtime,tokio-native-tls,gio-runtime + - name: Check all features + run: cargo check --all-features - name: Test async-std-runtime run: cargo test --features async-std-runtime