mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
17 lines
206 B
Bash
Executable File
17 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cargo build --features "strict"
|
|
cargo test
|
|
cargo doc --document-private-items
|
|
|
|
touch src/lib.rs
|
|
cargo clippy -- -D warnings
|
|
|
|
cargo fmt -- --check
|
|
|
|
echo
|
|
echo "!!! Build successful !!!"
|
|
|
|
|