maint/CICD ~ add cargo fmt style testing of tests

This commit is contained in:
Roy Ivy III
2020-04-14 00:07:00 -05:00
parent 511f138e38
commit aea98a40e0
+6 -1
View File
@@ -58,8 +58,13 @@ jobs:
with:
command: fmt
args: --all -- --check
- name: "`fmt` testing of tests"
if: steps.vars.outputs.JOB_DO_FORMAT_TESTING
shell: bash
run: |
find tests -name "*.rs" -print0 | xargs -0 cargo fmt -- --check
- name: "`clippy` testing"
if: success() || failure() # run regardless of prior step ("`fmt` testing") success/failure
if: success() || failure() # run regardless of prior step success/failure
uses: actions-rs/cargo@v1
with:
command: clippy