Skip to content

Commit 7c09aa2

Browse files
authored
refactor(.github): merge checks actions (estkme-group#368)
1 parent 38fd8db commit 7c09aa2

3 files changed

Lines changed: 24 additions & 38 deletions

File tree

.github/workflows/clang-format-check.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/lint.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Lint
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
reuse:
7+
name: REUSE Compliance
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-python@v6
12+
with:
13+
python-version: '3.13'
14+
- run: pipx run reuse lint
15+
16+
clang-format:
17+
name: Clang Format
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v5
21+
- uses: jidicula/clang-format-action@v4.15.0
22+
with:
23+
clang-format-version: "20"
24+
exclude-regex: "(dlfcn-win32)/.*"

.github/workflows/reuse-lint.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)