summaryrefslogtreecommitdiff
path: root/check
blob: 46eda797c3566b3944cd86028ee11b1a4ff87589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
#
# Run automated tests for the project.

set -euo pipefail

quiet=-q
hideok=
if command -v chronic >/dev/null; then
	hideok=chronic
fi

if [ "$#" -gt 0 ]; then
	case "$1" in
	verbose | -v | --verbose)
		quiet=
		hideok=
		;;
	esac
fi

got_cargo_cmd() {
	cargo --list | grep " $1 " >/dev/null
}

# shellcheck disable=2086
got_cargo_cmd clippy && cargo clippy $quiet
got_cargo_cmd fmt && cargo fmt -- --check

# shellcheck disable=2086
cargo build --all-targets $quiet
$hideok cargo test

subplot docgen cachedir.subplot -o cachedir.html

echo "Everything seems to be in order."