Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,15 @@ jobs:
run: >
pushd node &&
cargo check --features=runtime-benchmarks --release

- name: Test pallets/subtensor
run: |
SKIP_WASM_BUILD=1 RUST_LOG=runtime=debug cargo test pallets/subtensor

- name: Test node
run: |
SKIP_WASM_BUILD=1 RUST_LOG=runtime=debug cargo test node

- name: Test runtime
run: |
SKIP_WASM_BUILD=1 RUST_LOG=runtime=debug cargo test runtime
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Once the project has been built, the following command can be used to explore al
subcommands:

```sh
./target/release/subtensor -h
./target/release/node-subtensor -h
```

## Run
Expand All @@ -92,13 +92,13 @@ node.
This command will start the single-node development chain with non-persistent state:

```bash
./target/release/subtensor --dev
./target/release/node-subtensor --dev
```

Purge the development chain's state:

```bash
./target/release/subtensor purge-chain --dev
./target/release/node-subtensor purge-chain --dev
```

Start the development chain with detailed logging:
Expand Down