diff options
| author | Fuwn <[email protected]> | 2021-04-29 19:57:21 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-29 19:57:21 +0000 |
| commit | 11ee0480e3d807558f40c5a6113d44c44ccec70d (patch) | |
| tree | 1b4a77c345b854018627128092d7bd76b53a9669 | |
| parent | refactor(commitizen): move Commitizen configuration to it's own file (diff) | |
| download | whirl-11ee0480e3d807558f40c5a6113d44c44ccec70d.tar.xz whirl-11ee0480e3d807558f40c5a6113d44c44ccec70d.zip | |
ci(actions): run rust workflow on `Cargo.toml` changes
| -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 |