File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ workflows:
18
18
- contract_reflect
19
19
- contract_staking
20
20
- fmt
21
+ - fmt_extra
21
22
- clippy
22
23
- benchmarking :
23
24
requires :
@@ -675,6 +676,24 @@ jobs:
675
676
- target/debug/deps
676
677
key : cargocache-v2-fmt-rust:1.51.0-{{ checksum "Cargo.lock" }}
677
678
679
+ fmt_extra :
680
+ docker :
681
+ - image : node:16.3.0-buster
682
+ steps :
683
+ - checkout
684
+ - run :
685
+ name : Install shfmt
686
+ command : curl -sS https://webinstall.dev/shfmt | bash
687
+ - run :
688
+ name : Validate Markdown files
689
+ command : devtools/format_md.sh -c
690
+ - run :
691
+ name : Validate shell scripts
692
+ command : PATH="/root/.local/bin:$PATH" devtools/format_sh.sh -c
693
+ - run :
694
+ name : Validate YAML files
695
+ command : devtools/format_yml.sh -c
696
+
678
697
clippy :
679
698
docker :
680
699
# In this job we use the latest Rust stable in order to check against the
You can’t perform that action at this time.
0 commit comments