From d2432c20e8934ea41b1dbf557156120506fc49e3 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 16 Mar 2024 13:37:05 -0500 Subject: [PATCH] ci: add basic format checking --- .gitea/workflows/fmt.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/fmt.yaml diff --git a/.gitea/workflows/fmt.yaml b/.gitea/workflows/fmt.yaml new file mode 100644 index 00000000..7bd2af32 --- /dev/null +++ b/.gitea/workflows/fmt.yaml @@ -0,0 +1,14 @@ +name: Check Formatting of Files +on: + - push + - workflow_dispatch + +jobs: + Check-Formatting: + runs-on: default + steps: + - name: Check out code + uses: actions/checkout@v3 + + - name: Check formatting + run: ./scripts/check-fmt-git-files.bash