aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 03:35:12 +0000
committerFuwn <[email protected]>2021-05-20 03:35:12 +0000
commit17a2fa1d15d2324b82f1a942dcc28a882c4ba645 (patch)
tree81eff274a52bda85102c4fcba0ab938471a0b7a4 /.github/workflows
parentdocs(whirl): remove un-needed comment (diff)
downloadwhirl-17a2fa1d15d2324b82f1a942dcc28a882c4ba645.tar.xz
whirl-17a2fa1d15d2324b82f1a942dcc28a882c4ba645.zip
ci(actions): fix activation paths
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/audit.yml1
-rw-r--r--.github/workflows/coverage.yml12
-rw-r--r--.github/workflows/rust.yml18
3 files changed, 18 insertions, 13 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
index 2f72d2d..3a4b740 100644
--- a/.github/workflows/audit.yml
+++ b/.github/workflows/audit.yml
@@ -1,6 +1,5 @@
name: Audit 🩺
-
on:
schedule:
- cron: "0 0 * * *"
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index e1637d6..5dd3c73 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -3,12 +3,16 @@ name: Coverage 🛌
on:
push:
paths:
- - "src/**"
- - "Cargo.toml"
+ - "whirl/**"
+ - "whirl_config/**"
+ - "whirl_prompt/**"
+ - "whirl_server/**"
pull_request:
paths:
- - "src/**"
- - "Cargo.toml"
+ - "whirl/**"
+ - "whirl_config/**"
+ - "whirl_prompt/**"
+ - "whirl_server/**"
jobs:
coverage:
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: