mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 20:12:09 +03:00
18 lines
203 B
Bash
Executable File
18 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
#cargo build --features "strict"
|
|
cargo build
|
|
cargo test
|
|
cargo doc --document-private-items
|
|
|
|
|
|
cargo clippy -- -D warnings
|
|
|
|
cargo fmt -- --check
|
|
|
|
echo
|
|
echo "!!! Build successful !!!"
|
|
|
|
|