diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/DEVELOPING.md | 4 | ||||
-rw-r--r-- | docs/RELEASE.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/DEVELOPING.md b/docs/DEVELOPING.md index d990684..23b6607 100644 --- a/docs/DEVELOPING.md +++ b/docs/DEVELOPING.md @@ -18,9 +18,9 @@ Now, ensure that lints, tests, and builds succeed. ```shell cargo fmt --all -- --check cargo clippy -- -D warnings -cargo doc +cargo doc --all cargo test -cargo build +cargo build --all-targets ``` > Alternatively, you can replace `cargo test` above with [cargo nextest](https://github.com/nextest-rs/nextest). diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 3c0f43e..7d177c5 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -23,7 +23,7 @@ cargo build - [ ] Create and _do not merge_ a commit with the following message: `Update to <tag>` - [ ] Test and verify the publishing workflow: -```bash +```shell cargo publish --dry-run ``` |