-
Notifications
You must be signed in to change notification settings - Fork 94
34 lines (34 loc) · 1.04 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Tests
on:
repository_dispatch:
types: [tests-report]
push:
jobs:
unit-tests:
name: Unit tests
strategy:
matrix:
platform: [ubuntu-latest] # , windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
env:
RUST_BACKTRACE: 1
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: Run integration test
run: cd integration-tests && cargo run --example integration-tests
- name: Run unit tests
run: >
cd market-contract && cargo test
cd ../nft-contract && cargo test
cd ../nft-contract-approval && cargo test
cd ../nft-contract-basic && cargo test
cd ../nft-contract-events && cargo test
cd ../nft-contract-royalty && cargo test
cd ../nft-contract-skeleton && cargo test
cd ../nft-series && cargo test