Skip to content

Commit cc1ec26

Browse files
committed
feat(ci): adding ubuntu 20.04 cmake test
1 parent caa15c8 commit cc1ec26

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/pipeline.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,3 +202,18 @@ jobs:
202202
- name: Run clang-tidy check
203203
run: cmake --build build --target clang-tidy-check
204204

205+
check-against-minimum-cmake:
206+
runs-on: ubuntu-20.04
207+
208+
steps:
209+
- uses: actions/checkout@v4
210+
211+
- name: Cmake version
212+
run: cmake --version
213+
214+
- name: Make build directory
215+
run: cmake -Bbuild -H$GITHUB_WORKSPACE
216+
217+
- name: Run clang-tidy check
218+
run: cmake --build build
219+

0 commit comments

Comments
 (0)