Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c67ee2

Browse files
committed
fix: Fix cli param order
1 parent b7ee0d7 commit 2c67ee2

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ jobs:
7373
- name: run tests
7474
run: |
7575
cd contracts/wasm
76-
echo "run SC tests with solo"
76+
echo "========run SC tests with solo========"
7777
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"
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========"
8585
cd ../../packages/vm/
8686
go test ./...
8787

0 commit comments

Comments
 (0)