blob: 1a3137691fa139734d1d9f5f92fbf19b54120956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
name: lint_pr
on: pull_request
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.8
with:
source: './src ./include'
clangFormatVersion: 10
|