aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 03:35:12 -0700
committerFuwn <[email protected]>2021-05-20 03:35:12 -0700
commit4abbc7f721be6e9bd02ab7fe40dd83896780d9be (patch)
tree36544f8c6739b06a1fd22e3b589187d8ab9043b0
parentdocs(whirl): remove un-needed comment (diff)
downloadwhirl-4abbc7f721be6e9bd02ab7fe40dd83896780d9be.tar.xz
whirl-4abbc7f721be6e9bd02ab7fe40dd83896780d9be.zip
ci(actions): fix activation paths
-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: