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:
Diffstat (limited to '.github/workflows/format.yml')
-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