File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 43
43
- name : rustdoc
44
44
run : make doc
45
45
46
+ - run : make is-dirty
47
+
46
48
wasm :
47
49
runs-on : ubuntu-latest
48
50
63
65
- name : Run tests in wasm
64
66
run : RUSTFLAGS='-Dwarnings --cfg getrandom_backend="wasm_js"' make wasm
65
67
68
+ - run : make is-dirty
69
+
66
70
run_tests_with_network :
67
71
runs-on : ubuntu-latest
68
72
env :
Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ doc: ## Generate documentation
44
44
doc-open : # # Generate and open documentation
45
45
RUSTDOCFLAGS=" --cfg=doc_cfg -Zunstable-options --generate-link-to-definition" RUSTC_BOOTSTRAP=1 cargo doc --all-features --no-deps --open
46
46
47
+ .PHONY : is-dirty
48
+ is-dirty : # # Checks if repository is dirty
49
+ @ (test -z " $$ (git diff)" || (git diff && false)) && (test -z " $$ (git status --porcelain)" || (git status --porcelain && false))
50
+
47
51
.PHONY : ci
48
52
ci : check-features check-fmt test wasm # # Run the full CI process
49
53
You can’t perform that action at this time.
0 commit comments