mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
8 lines
163 B
Bash
Executable file
8 lines
163 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
echo Testing $(git log -1 --oneline)
|
|
cargo check
|
|
cargo doc
|
|
cargo doc --document-private-items
|
|
cd fuzz && cargo check --features=stdin_fuzz
|