diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c5ebff1..6da758d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,17 +88,20 @@ jobs: - name: Build run: | cargo build \ + --workspace --locked --all-features \ --target ${{ matrix.cargo-target }} - name: Lint run: | cargo clippy \ + --workspace --locked --all-features \ --target ${{ matrix.cargo-target }} - name: Test run: | cargo test \ + --lib --workspace --locked --all-features \ --target ${{ matrix.cargo-target }}