Skip to content

Commit 6b2a9d4

Browse files
committed
[CI] Split into several workflow files
1 parent 6d32569 commit 6b2a9d4

3 files changed

Lines changed: 613 additions & 617 deletions

File tree

.github/workflows/lint.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: ubuntu-24.04
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Install flake8
19+
run: python3 -m pip install flake8
20+
- name: Run flake8
21+
run: python3 -m flake8 .

0 commit comments

Comments
 (0)