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