diff options
| author | Martin Fischer <martin@push-f.com> | 2025-07-09 20:32:34 +0200 | 
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2025-07-14 07:01:33 +0200 | 
| commit | ba6b72b4c7e257b9514ce21b7fbbc469e4c8a849 (patch) | |
| tree | f70afb535e75d3e1c9d100212b64ad171b088b8b /check | |
Diffstat (limited to 'check')
| -rwxr-xr-x | check | 9 | 
1 files changed, 9 insertions, 0 deletions
| @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +s=0 + +! git grep FIX''ME; s=$((s | $?)) +golangci-lint run; s=$((s | $?)) +golangci-lint fmt --diff; s=$((s | $?)) +go test ./...; s=$((s | $?)) + +exit $s | 
