Riven/test-full.bash

14 lines
317 B
Bash
Raw Normal View History

#!/bin/bash
2022-08-15 23:01:07 +00:00
set -euxo pipefail
# Ensure stable builds.
2022-08-15 23:01:07 +00:00
cargo +stable check --all-targets
cargo +stable check --all-targets --features tracing
# Ensure nightly builds.
2022-08-15 23:01:07 +00:00
cargo check --all-targets --features nightly,tracing
cargo build --all-targets --features nightly,deny-unknown
2022-08-15 23:01:07 +00:00
# Run nightly tests.
bash test.bash