summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoy Ivy III <rivy.dev@gmail.com>2019-12-05 11:35:36 -0600
committerPierre Peltier <dev@halium.fr>2019-12-11 10:53:23 +0100
commit5fb58ce0bc54b172c73b1178d88c2dd84f3b46a1 (patch)
tree3abc9e05526e9747f11125227b977ce02fb2f522
parent200c5d2c68c7f0519d1eddfef2e30fe7dd8d11e5 (diff)
maint/cicd ~ always run all GHA:Style testing steps
- always runs all style testing steps regardless of failure of the prior step - with this change, `clippy` tests will run regardless of `fmt` test success/failure .# [why] The GHA:Style testing steps are essentially independent of each other and give independent / complementary information about style issues. So, running all of them despite errors can increase code iteration efficiency. Note: as intended, the GHA:Style job will still fail if any individual step fails.
-rw-r--r--.github/workflows/CICD.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index b6b46f1..ca56ede 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -33,6 +33,7 @@ jobs:
command: fmt
args: --all -- --check
- name: "`clippy` testing"
+ if: success() || failure() # run regardless of prior step ("`fmt` testing") success/failure
uses: actions-rs/cargo@v1
with:
command: clippy