Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ee0d7 commit 2c67ee2Copy full SHA for 2c67ee2
1 file changed
.github/workflows/build-test.yml
@@ -73,15 +73,15 @@ jobs:
73
- name: run tests
74
run: |
75
cd contracts/wasm
76
- echo "run SC tests with solo"
+ echo "========run SC tests with solo========"
77
go test ./...
78
- echo "run SC tests with gowasm"
79
- go test -gowasm ./...
80
- echo "run SC tests with tswasm"
81
- go test -tswasm ./...
82
- echo "run SC tests with rswasm"
83
- go test -rswasm ./...
84
- echo "run packages/vm tests"
+ echo "========run SC tests with gowasm========"
+ go test ./... -gowasm
+ echo "========run SC tests with tswasm========"
+ go test ./... -tswasm
+ echo "========run SC tests with rswasm========"
+ go test ./... -rswasm
+ echo "========run packages/vm tests========"
85
cd ../../packages/vm/
86
87
0 commit comments