From 2a00accc5a1045e3a2ba0d49a0eab967bcbe427e Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 4 Feb 2026 17:17:56 -0800 Subject: [PATCH] add mise/prek config --- .gitea/workflows/build.yaml | 2 +- .mise.toml | 5 +++++ .pre-commit-config.yaml | 30 ++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 .mise.toml create mode 100644 .pre-commit-config.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f33e2d8..309a19a 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,7 +11,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Zig - uses: https://github.com/mlugg/setup-zig@v1.2.1 + uses: https://codeberg.org/mlugg/setup-zig@v2.2.1 with: version: 0.14.0 - name: Restore Zig caches diff --git a/.mise.toml b/.mise.toml new file mode 100644 index 0000000..78245a6 --- /dev/null +++ b/.mise.toml @@ -0,0 +1,5 @@ +[tools] +prek = "0.3.1" +"ubi:DonIsaac/zlint" = "0.7.9" +zig = "0.14.1" +zls = "0.14.0" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..39ab561 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,30 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v6.0.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-added-large-files + - repo: https://github.com/batmac/pre-commit-zig + rev: v0.3.0 + hooks: + - id: zig-fmt + - id: zig-build + - repo: local + hooks: + - id: test + name: Run zig build test + entry: zig + args: ["build", "test"] + language: system + types: [file] + pass_filenames: false + - id: zlint + name: Run zlint + entry: zlint + args: ["--deny-warnings", "--fix"] + language: system + types: [zig]