Merge remote-tracking branch 'origin/trunk' into zig-str-concat

This commit is contained in:
Richard Feldman 2020-12-01 21:49:43 -05:00
commit a9d4b38e44
4 changed files with 16 additions and 5 deletions

View file

@ -1,6 +1,9 @@
#!/bin/bash
set -eux
set -euxo pipefail
# Test every zig
find src/*.zig -type f -exec zig test --library c {} \;
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