Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Vedder <vedder@mbits.info>2022-05-06 15:29:13 +0300
committerStephan Vedder <vedder@mbits.info>2022-05-06 15:29:43 +0300
commit91b2a4b3feabcf34056ce1c0d9b3d81aa2cbd8e9 (patch)
treef3c968b6d8abff303c2fde0296d86205fb2f20f5
parent4c726a3e8b86a7e467e9f1c6c009a03f5b2f53e9 (diff)
Add format check
-rw-r--r--.github/workflows/format.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
new file mode 100644
index 00000000..35f8d8df
--- /dev/null
+++ b/.github/workflows/format.yml
@@ -0,0 +1,15 @@
+name: clang-format Check
+
+on: [push, pull_request]
+
+jobs:
+ formatting-check:
+ name: Formatting Check
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Run clang-format style check for OverGrowth Source
+ uses: jidicula/clang-format-action@v4.5.0
+ with:
+ clang-format-version: '13'
+ check-path: 'Source' \ No newline at end of file