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.
This commit is contained in:
Roy Ivy III 2019-12-05 11:35:36 -06:00 committed by Pierre Peltier
parent 200c5d2c68
commit 5fb58ce0bc

View file

@ -33,6 +33,7 @@ jobs:
command: fmt command: fmt
args: --all -- --check args: --all -- --check
- name: "`clippy` testing" - name: "`clippy` testing"
if: success() || failure() # run regardless of prior step ("`fmt` testing") success/failure
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: clippy command: clippy