Skip to content

Commit a51ce1d

Browse files
committed
Udpates
1 parent 597d937 commit a51ce1d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/copilot-instructions.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,15 @@ Tests validate discovered environments using 4 verification methods:
126126
2. `crates/pet/src/locators.rs` - Core architecture patterns
127127
3. `crates/pet-core/src/lib.rs` - Essential traits and types
128128
4. `crates/pet/tests/ci_test.rs` - Comprehensive testing patterns
129+
130+
131+
## Scripts
132+
- Use `cargo fetch` to download all dependencies
133+
- Use `rustup component add clippy` to install Clippy linter
134+
- Use `cargo fmt --all` to format code in all packages
135+
- Use `cargo clippy --all-features -- -Dwarnings` to check for linter issues
136+
- Use `cargo build` to build the project
137+
- Use `cargo test --all` to test all packages (this can take a few seconds)
138+
- Use `cargo test [TESTNAME]` to test a specific test
139+
- Use `cargo test -p [SPEC]` to test a specific package
140+
- Use `cargo test --all` to test all packages

0 commit comments

Comments
 (0)