roc/compiler/builtins/bitcode/run-tests.sh
2020-12-01 20:36:09 -05:00

9 lines
198 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
# Test every zig
find src/*.zig -type f -print0 | xargs -n 1 -0 zig test --library c
# fmt every zig
find src/*.zig -type f -print0 | xargs -n 1 -0 zig fmt --check