diff options
| author | Fuwn <[email protected]> | 2021-04-29 19:57:21 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-29 19:57:21 -0700 |
| commit | 57853b3287d5c3aa5355810fefe2edc23a8a1008 (patch) | |
| tree | dffc26a3c122fb54e77c679a55e0b14e6e976d66 /.github/workflows | |
| parent | refactor(commitizen): move Commitizen configuration to it's own file (diff) | |
| download | whirl-57853b3287d5c3aa5355810fefe2edc23a8a1008.tar.xz whirl-57853b3287d5c3aa5355810fefe2edc23a8a1008.zip | |
ci(actions): run rust workflow on `Cargo.toml` changes
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7be0294..88458fc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -3,10 +3,14 @@ name: Rust ✅/ 🚫 on: push: # branches: [develop] - paths: "src" + paths: + - "src" + - "Cargo.toml" pull_request: # branches: [develop] - paths: "src" + paths: + - "src" + - "Cargo.toml" env: CARGO_TERM_COLOR: always |