mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
22 lines
375 B
YAML
Executable file
22 lines
375 B
YAML
Executable file
name: clang-format
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'doc/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'doc/**'
|
|
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: DoozyX/clang-format-lint-action@v0.13
|
|
with:
|
|
extensions: 'hpp,cpp'
|
|
clangFormatVersion: 13
|