mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
5 lines
127 B
Bash
Executable file
5 lines
127 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
find spec/ -type f -name \*_spec.cr -print0 | \
|
|
xargs -0 -n1 crystal spec --error-on-warnings -v
|