Skip to content

Commit 9c8bb07

Browse files
authored
Use single run for build step
1 parent abdd61f commit 9c8bb07

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cmake.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
run: sudo apt-get install qtbase5-dev
2121

2222
- name: Build
23-
- run: mkdir build && cd build
24-
- run: cmake .. -DBUILD_TESTS=ON && make VERBOSE=1
23+
run: |
24+
mkdir build && cd build
25+
cmake .. -DBUILD_TESTS=ON && make VERBOSE=1
2526
2627
- name: Test
2728
working-directory: ${{github.workspace}}/build

0 commit comments

Comments
 (0)