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 92f5cbc commit 83950b6Copy full SHA for 83950b6
.github/workflows/clang-format.yml
@@ -1,4 +1,4 @@
1
-name: C Code Linting
+name: C Code Formatting Check
2
3
on:
4
push:
@@ -20,12 +20,9 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v4
23
- - name: Install clang-format
24
- run: sudo apt-get install -y clang-format
25
- - name: Setup Ruby
26
- uses: ruby/setup-ruby@v1
27
- with:
28
- ruby-version: '3.4'
29
- bundler-cache: true
30
- - name: Check C code linting
31
- run: bundle exec rake format:c_check
+ - name: Install system dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y clang-format
+ - name: Check C code formatting
+ run: rake format:c_check
0 commit comments