From a9b60db54f2f0bb8493e5e404e23230fa81e3497 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 11 Sep 2023 13:32:07 -0500 Subject: [PATCH] Add missing features and target flag to clippy and test in CI --- .github/workflows/ci.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4762eca..4bde3cf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,7 +81,13 @@ jobs: --target ${{ matrix.cargo-target }} - name: Lint - run: cargo clippy + run: | + cargo clippy \ + --locked --all-features \ + --target ${{ matrix.cargo-target }} - name: Test - run: cargo test --lib + run: | + cargo test \ + --locked --all-features \ + --target ${{ matrix.cargo-target }}