Skip to content

Commit 076ee6e

Browse files
committed
ci: add format check step to CI workflow for consistency
1 parent 1239e91 commit 076ee6e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: checkout repository
1414
uses: actions/checkout@v4
15+
- name: check format
16+
run: ./format-files.sh check
1517
- name: configure
1618
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
1719
- name: build
@@ -29,6 +31,8 @@ jobs:
2931
steps:
3032
- name: checkout repository
3133
uses: actions/checkout@v4
34+
- name: check format
35+
run: ./format-files.sh check
3236
- name: configure
3337
run: cmake -S . -B build -G "Visual Studio 17 2022"
3438
- name: build

0 commit comments

Comments
 (0)