dyd 0.4.0

CLI for daily diffing of git repos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

trap "exit" INT

source ".medic/_support/cecho.sh"
source ".medic/_support/step.sh"

set -o pipefail

step "Check for warnings" \
  "cargo build --features strict"

step_header "Run tests" "cargo test"
echo

set -e
cargo test