1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-12 08:06:04 +02:00

Added a loop for the formatting test, so we can see where errors happen.

This commit is contained in:
Chris Boesch 2023-04-25 23:21:01 +02:00
parent badf1981cd
commit a7d42a4f57

View File

@ -42,8 +42,13 @@ do
fi
done
# Test the correct formatting of the healed exercises.
echo "Looking for non-conforming code formatting..."
zig fmt --check patches/healed
for healed in patches/healed/*.zig
do
echo Check $(basename "$healed")
zig fmt --check "$healed"
done
# Test the healed exercises. May the compiler have mercy upon us.
zig build -Dhealed