We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82e076 commit 6d3e9c1Copy full SHA for 6d3e9c1
.github/workflows/check.yml
@@ -0,0 +1,27 @@
1
+name: check
2
+
3
+on: [workflow_call]
4
5
+jobs:
6
+ clang-checks:
7
+ runs-on: ubuntu-latest
8
+ container: oraclelinux:9
9
+ steps:
10
+ - name: Check out repository code
11
+ uses: actions/checkout@v4
12
+ - name: Install dependencies
13
+ uses: ./.github/actions/install-dependencies
14
+ with:
15
+ clang-tools: true
16
+ pcap: true
17
+ - name: make format-check
18
+ run: make format
19
20
+ editor-config:
21
22
+ container: mstruebing/editorconfig-checker
23
24
25
26
+ - name: Check editorconfig
27
+ run: ec --exclude .git
0 commit comments