File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ jobs:
48
48
49
49
- name : Build
50
50
# Build your program with the given configuration
51
- run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
51
+ run : cmake --build ${{ github.workspace }}/build --config ${{ env.BUILD_TYPE}}
52
52
53
53
- name : Test
54
- working-directory : ${{github.workspace}}/build
54
+ working-directory : ${{ github.workspace }}/build
55
55
# Execute tests defined by the CMake configuration.
56
56
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
57
57
run : ctest -C ${{env.BUILD_TYPE}}
63
63
image : debian:buster
64
64
env :
65
65
DEBIAN_FRONTEND : noninteractive
66
+ defaults :
67
+ run :
68
+ shell : bash
66
69
steps :
67
70
- name : Install dependencies
68
71
run : |
93
96
run : cmake --build ${{ github.workspace }}/build --config ${{ env.BUILD_TYPE }}
94
97
95
98
- name : Test
96
- working-directory : ${{github.workspace}}/build
99
+ working-directory : ${{ github.workspace }}/build
97
100
# Execute tests defined by the CMake configuration.
98
101
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
99
- run : ctest -C ${{env.BUILD_TYPE}}
102
+ run : ctest -C ${{ env.BUILD_TYPE }}
You can’t perform that action at this time.
0 commit comments