From a6f5e3efd18a506ef92a8cf9aea561ac22cce7b5 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 10 Jul 2026 21:54:35 -0400 Subject: [PATCH] Move CI-only `check-format` script to `.github/` --- contrib/checkformat.sh => .github/scripts/check-format.sh | 0 .github/workflows/{checkformat.yml => check-format.yml} | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename contrib/checkformat.sh => .github/scripts/check-format.sh (100%) rename .github/workflows/{checkformat.yml => check-format.yml} (88%) diff --git a/contrib/checkformat.sh b/.github/scripts/check-format.sh similarity index 100% rename from contrib/checkformat.sh rename to .github/scripts/check-format.sh diff --git a/.github/workflows/checkformat.yml b/.github/workflows/check-format.yml similarity index 88% rename from .github/workflows/checkformat.yml rename to .github/workflows/check-format.yml index 65842b2a..ccd56ccd 100644 --- a/.github/workflows/checkformat.yml +++ b/.github/workflows/check-format.yml @@ -8,7 +8,7 @@ env: CLICOLOR_FORCE: 1 jobs: - checkformat: + check-format: runs-on: ubuntu-slim steps: - name: Checkout repo @@ -18,4 +18,4 @@ jobs: sudo apt install -Uyq clang-format - name: Check format run: | - contrib/checkformat.sh + .github/scripts/check-format.sh