diff options
author | David Robertson <davidr@element.io> | 2022-11-28 11:47:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 11:47:16 +0000 |
commit | 105ab1c3d2e36931dcc781d6860040bfc0929ca1 (patch) | |
tree | eb889476b5fbe70da00d5db9ea2b42147166789d | |
parent | Bump dtolnay/rust-toolchain from 55c7845fad90d0ae8b2e83715cb900e5e861e8cb to ... (diff) | |
download | synapse-105ab1c3d2e36931dcc781d6860040bfc0929ca1.tar.xz |
Run Rust CI when Cargo.lock changes too (#14571)
* Run Rust CI when Cargo.lock changes too * Changelog
-rw-r--r-- | .github/workflows/tests.yml | 1 | ||||
-rw-r--r-- | changelog.d/14571.misc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7ff0b5ba8e..b687eb002d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,6 +27,7 @@ jobs: rust: - 'rust/**' - 'Cargo.toml' + - 'Cargo.lock' check-sampleconfig: runs-on: ubuntu-latest diff --git a/changelog.d/14571.misc b/changelog.d/14571.misc new file mode 100644 index 0000000000..212990cb10 --- /dev/null +++ b/changelog.d/14571.misc @@ -0,0 +1 @@ +Run Rust CI when `Cargo.lock` changes. This is particularly useful for dependabot updates. |