10 lines
75 B
Bash
10 lines
75 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
cargo check --tests
|
||
|
|
||
|
cd -
|