From c200e18df60e2bdbec4cfb2c1ffa710f0170b437 Mon Sep 17 00:00:00 2001
From: sam edelsten <43527203+bytemunch@users.noreply.github.com>
Date: Wed, 27 Mar 2024 13:34:42 +0000
Subject: [PATCH] Add --all-features to Lints job (#127)

* add --all-features to CI checks

* add all-features to clippy command
---
 .github/workflows/pr.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index ad05a0d..fb7243c 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -62,7 +62,7 @@ jobs:
       - name: Fmt
         run: cargo fmt --all -- --check
       - name: Clippy
-        run: cargo clippy -- -A clippy::type_complexity -A clippy::too_many_arguments -D warnings
+        run: cargo clippy --all-features -- -A clippy::type_complexity -A clippy::too_many_arguments -D warnings
   test-cosmic-edit:
     name: Test cosmic-edit
     runs-on: ubuntu-latest
-- 
GitLab