mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-01-31 07:42:15 +00:00
789e2ff216
cargo fmt does not build the code, and running it in a fresh clone of the codebase will fail because the protobuf code has not been generated.
14 lines
218 B
YAML
14 lines
218 B
YAML
language: rust
|
|
rust:
|
|
- 1.36.0
|
|
|
|
cache: cargo
|
|
|
|
before_script:
|
|
- rustup component add rustfmt
|
|
|
|
script:
|
|
- cargo build --verbose --release --all
|
|
- cargo fmt --all -- --check
|
|
- cargo test --verbose --release --all
|