update versions
All checks were successful
Generic zig build / build (push) Successful in 53s

This commit is contained in:
Emil Lerch 2026-02-04 16:55:04 -08:00
parent 5882330451
commit 058c7dde69
Signed by: lobo
GPG key ID: A7B62D657EF764F8
3 changed files with 34 additions and 4 deletions

View file

@ -12,7 +12,7 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Zig - name: Setup Zig
uses: https://github.com/mlugg/setup-zig@v2.0.5 uses: https://codeberg.org/mlugg/setup-zig@v2.2.1
- name: Build project - name: Build project
run: zig build --summary all run: zig build --summary all
- name: Run tests - name: Run tests

View file

@ -1,4 +1,4 @@
[tools] [tools]
pre-commit = "latest" prek = "0.3.1"
"ubi:DonIsaac/zlint" = "latest" "ubi:DonIsaac/zlint" = "0.7.9"
zig = "0.15.1" zig = "0.15.2"

30
.pre-commit-config.yaml Normal file
View file

@ -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]