From 6e4578047c392781986d13e4d5f496a803b56d77 Mon Sep 17 00:00:00 2001 From: Matt Green Date: Tue, 3 Sep 2024 12:54:21 -0700 Subject: [PATCH] Disable building denormalized-python with cargo-build --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7fc74d3..02f78da 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,7 +23,8 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Build - run: cargo build --verbose + # Disable building denormaliezd-python as building it with cargo is currently broken while using rye https://github.com/astral-sh/rye/issues/646 + run: cargo build --verbose --workspace --exclude denormalized-python - name: Run Clippy run: cargo clippy --all-targets --all-features - name: Run tests