From b70c4f30eeb47c15fbabd54173f952877d5cfc43 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 3 Dec 2024 14:13:32 -0600 Subject: [PATCH] Add `Cargo.toml` to triggers for binary test builds (#9616) --- .github/workflows/build-binaries.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 10a933465165..166fb23504c4 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -14,8 +14,9 @@ on: type: string pull_request: paths: - # When we change pyproject.toml, we want to ensure that the maturin builds still work. + # When we change project metadata, we want to ensure that the maturin builds still work. - pyproject.toml + - Cargo.toml # And when we change this workflow itself... - .github/workflows/build-binaries.yml