We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d32569 commit 6b2a9d4Copy full SHA for 6b2a9d4
3 files changed
.github/workflows/lint.yml
@@ -0,0 +1,21 @@
1
+on:
2
+ workflow_call:
3
+
4
+jobs:
5
+ clang-format:
6
+ runs-on: ubuntu-24.04
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - uses: DoozyX/clang-format-lint-action@v0.20
10
+ with:
11
+ source: '.'
12
+ clangFormatVersion: 20
13
14
+ python-lint:
15
16
17
18
+ - name: Install flake8
19
+ run: python3 -m pip install flake8
20
+ - name: Run flake8
21
+ run: python3 -m flake8 .
0 commit comments