Skip to content

Commit 83950b6

Browse files
committed
FIx
1 parent 92f5cbc commit 83950b6

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/clang-format.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: C Code Linting
1+
name: C Code Formatting Check
22

33
on:
44
push:
@@ -20,12 +20,9 @@ jobs:
2020

2121
steps:
2222
- 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
23+
- name: Install system dependencies
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y clang-format
27+
- name: Check C code formatting
28+
run: rake format:c_check

0 commit comments

Comments
 (0)