File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,19 @@ commands:
22
22
- run :
23
23
name : Build wasm binary
24
24
command : cargo wasm --locked
25
- # After wasm build to ensure target/wasm32-unknown-unknown/release/<contract>.wasm exists
25
+ - run :
26
+ name : Run cosmwasm-check (2.0)
27
+ command : |
28
+ cargo install cosmwasm-check@~2.0 --locked
29
+ cosmwasm-check --version
30
+ cosmwasm-check target/wasm32-unknown-unknown/release/*.wasm
31
+ - run :
32
+ name : Run cosmwasm-check (1.4)
33
+ command : |
34
+ cargo install cosmwasm-check@~1.4 --locked
35
+ cosmwasm-check --version
36
+ cosmwasm-check target/wasm32-unknown-unknown/release/*.wasm
37
+ # Run clippy after wasm build to ensure target/wasm32-unknown-unknown/release/<contract>.wasm exists
26
38
- run :
27
39
name : Clippy
28
40
command : cargo clippy --all-targets -- -D warnings
You can’t perform that action at this time.
0 commit comments