mirror of https://github.com/MingweiSamuel/Riven
14 lines
317 B
Bash
Executable File
14 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Ensure stable builds.
|
|
cargo +stable check --all-targets
|
|
cargo +stable check --all-targets --features tracing
|
|
|
|
# Ensure nightly builds.
|
|
cargo check --all-targets --features nightly,tracing
|
|
cargo build --all-targets --features nightly,deny-unknown
|
|
|
|
# Run nightly tests.
|
|
bash test.bash
|