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

format.yml « workflows « .github - github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35f8d8df0a2f0c6d73fa65c7da410347895c4b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'