mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-16 02:55:00 +00:00
9 lines
262 B
Bash
Executable file
9 lines
262 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
# Test every zig
|
|
zig build test
|
|
|
|
# fmt every zig
|
|
find src/*.zig -type f -print0 | xargs -n 1 -0 zig fmt --check || (echo "zig fmt --check FAILED! Check the previous lines to see which files were improperly formatted." && exit 1)
|