diff options
| author | Fuwn <[email protected]> | 2021-05-20 03:35:12 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-20 03:35:12 +0000 |
| commit | 17a2fa1d15d2324b82f1a942dcc28a882c4ba645 (patch) | |
| tree | 81eff274a52bda85102c4fcba0ab938471a0b7a4 /.github/workflows/rust.yml | |
| parent | docs(whirl): remove un-needed comment (diff) | |
| download | whirl-17a2fa1d15d2324b82f1a942dcc28a882c4ba645.tar.xz whirl-17a2fa1d15d2324b82f1a942dcc28a882c4ba645.zip | |
ci(actions): fix activation paths
Diffstat (limited to '.github/workflows/rust.yml')
| -rw-r--r-- | .github/workflows/rust.yml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b2755a1..dcfba87 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,16 +1,18 @@ -name: Rust ✅/ 🚫 +name: Rust ✅ on: push: - # branches: [develop] paths: - - "src/**" - - "Cargo.toml" + - "whirl/**" + - "whirl_config/**" + - "whirl_prompt/**" + - "whirl_server/**" pull_request: - # branches: [develop] paths: - - "src/**" - - "Cargo.toml" + - "whirl/**" + - "whirl_config/**" + - "whirl_prompt/**" + - "whirl_server/**" env: CARGO_TERM_COLOR: always @@ -30,7 +32,7 @@ jobs: components: rustfmt, clippy override: true - - name: Check ✅/ 🚫 + - name: Check ✅ uses: actions-rs/cargo@v1 continue-on-error: false with: |