From 6e5b69294b0059aad597eda6675502cabcd2801b Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 2 Jun 2021 18:17:05 +0300 Subject: [PATCH] Enable all features in all CIs. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe2354a..2ea0fcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,24 +14,24 @@ jobs: command: - name: Check command: check - args: "" + args: --all-features components: "" - name: Test command: test - args: "" + args: --all-features components: "" include: - toolchain: nightly command: name: Format command: fmt - args: -- --check + args: --all-features -- --check components: rustfmt - toolchain: stable command: name: Lint command: clippy - args: "" + args: --all-features components: clippy steps: