File tree 1 file changed +14
-10
lines changed
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,17 @@ jobs:
22
22
target : wasm32-unknown-unknown
23
23
- name : Run integration test
24
24
run : cd integration-tests && cargo run --example integration-tests
25
- - name : Run unit tests
26
- run : >
27
- cd market-contract && cargo test &&
28
- cd ../nft-contract && cargo test &&
29
- cd ../nft-contract-approval && cargo test &&
30
- cd ../nft-contract-basic && cargo test &&
31
- cd ../nft-contract-events && cargo test &&
32
- cd ../nft-contract-royalty && cargo test &&
33
- cd ../nft-contract-skeleton && cargo test &&
34
- cd ../nft-series && cargo test
25
+ - name : Market tests
26
+ run : cd market-contract && cargo test
27
+ - name : NFT tests
28
+ run : cd nft-contract && cargo test
29
+ - name : Contract Basics tests
30
+ run : cd nft-contract-basic && cargo test
31
+ - name : Events tests
32
+ run : cd nft-contract-events && cargo test
33
+ - name : Royalty tests
34
+ run : cd nft-contract-royalty && cargo test
35
+ - name : Skeleton tests
36
+ run : cd nft-contract-skeleton && cargo test
37
+ - name : NFT series tests
38
+ run : cd nft-series && cargo test
You can’t perform that action at this time.
0 commit comments