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