We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dbef5f commit a2fa21dCopy full SHA for a2fa21d
.github/workflows/ci.yml
@@ -21,5 +21,4 @@ jobs:
21
numactl-devel \
22
python3-pyelftools
23
- run: make
24
- - run: make lint
25
- run: make coverage
.github/workflows/lint.yml
@@ -0,0 +1,17 @@
1
+# SPDX-License-Identifier: BSD-3-Clause
2
+# Copyright (c) 2024 Robin Jarry
3
+---
4
+name: Lint
5
+
6
+on: [pull_request]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ container: fedora:latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - run: |
15
+ dnf install -y \
16
+ make gcc ninja-build meson clang-tools-extra git
17
+ - run: make lint
0 commit comments