-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dalek-2.0.0-rc.2 * fix verfer tests * format * remove unused import * don't be explicit about packages we no longer use * revert to verify() * use trait * make preflight checks better * clippy * clippy * makefile improvements * fix wasm, add to preflight * add wasm to ci * install wasm-pack --------- Co-authored-by: Kevin Griffin <griffin.kev@gmail.com>
- Loading branch information
1 parent
7160ce2
commit 52cb8ff
Showing
6 changed files
with
46 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
setup: | ||
cargo install cargo-tarpaulin cargo-outdated cargo-audit wasm-pack | ||
|
||
clean: | ||
cargo clean | ||
|
||
fix: | ||
cargo fix | ||
cargo fmt | ||
|
||
clippy: | ||
cargo clippy --all-targets -- -D warnings | ||
|
||
preflight: | ||
cargo audit | ||
cargo fmt --check | ||
cargo outdated -R --ignore rand --exit-code 1 | ||
cargo outdated -R --exit-code 1 | ||
cargo audit | ||
cargo check | ||
cargo clippy -- -D warnings | ||
cargo build --release | ||
cargo test --release | ||
cargo tarpaulin | ||
cd wasm && wasm-pack build && wasm-pack build --target=nodejs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters