From 8cb7b8a13a2b011037db3e06b436bdb70bb01adf Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Wed, 5 Jun 2024 17:38:19 +0200 Subject: [PATCH] Fix CI --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6da758d..088884a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,20 +88,20 @@ jobs: - name: Build run: | cargo build \ - --workspace + --workspace \ --locked --all-features \ --target ${{ matrix.cargo-target }} - name: Lint run: | cargo clippy \ - --workspace + --workspace \ --locked --all-features \ --target ${{ matrix.cargo-target }} - name: Test run: | cargo test \ - --lib --workspace + --lib --workspace \ --locked --all-features \ --target ${{ matrix.cargo-target }}