Skip to content

Commit 563f552

Browse files
authored
Create ctest-develop.yml
1 parent e24e546 commit 563f552

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ctest-develop.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: GTest Sanity Check
2+
3+
on:
4+
push:
5+
branches: [ "develop" ]
6+
pull_request:
7+
branches: [ "develop" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Cmake Configure
17+
run: cmake -B build -DBUILD_TESTING=ON
18+
- name: Cmake Build
19+
run: cmake --build build_stm
20+
- name: Build Ctest
21+
run: ctest --test-dir build
22+
- name: Execute Test
23+
run: cd build && ctest && cd ..

0 commit comments

Comments
 (0)