Skip to content

Commit 260caa9

Browse files
authored
Update and rename
1 parent 6d28626 commit 260caa9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cmake-single-platform.yml renamed to .github/workflows/GoogleTest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage.
22
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml
3-
name: CMake on a single platform
3+
name: Run Test
44

55
on:
66
push:
@@ -54,11 +54,11 @@ jobs:
5454
- name: Configure CMake
5555
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
5656
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
57-
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
57+
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
5858

5959
- name: Build
6060
# Build your program with the given configuration
61-
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
61+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --
6262

6363
- name: Test
6464
working-directory: ${{github.workspace}}/build/test

0 commit comments

Comments
 (0)