From 9530f3d5619574ca5af80d3e42d061228d3a3792 Mon Sep 17 00:00:00 2001 From: torque Date: Tue, 26 Nov 2024 22:37:10 -0700 Subject: [PATCH] ci: remove --ast-check from zig format This works around ziglang/zig#22078 (the ast-check behavior changed since the last successful CI run). Since we build as part of the job, this check isn't really necessary anyway, though it certainly is lighter-weight than trying to compile. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6d95a06..10902d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,7 @@ jobs: - if: ${{ matrix.check-format }} name: Check Formatting - run: zig fmt --ast-check --check . + run: zig fmt --check . - name: Build run: zig build ${{ matrix.build-options }} --summary all