Skip to content

Commit ef96d31

Browse files
authored
Update tests.yml
1 parent ef14c51 commit ef96d31

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

.github/workflows/tests.yml

+14-10
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,17 @@ jobs:
2222
target: wasm32-unknown-unknown
2323
- name: Run integration test
2424
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

0 commit comments

Comments
 (0)