Skip to content

Commit dd7a77c

Browse files
committed
GHA: Updated yml
1 parent 1caa376 commit dd7a77c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525

2626
- name: Configure
2727
shell: bash
28-
run: cmake -B . -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE}}
28+
run: cmake -B build_dir -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE}}
2929

3030
- name: Build
3131
shell: bash
32-
run: cmake --build . --config ${{ env.BUILD_TYPE }}
32+
run: cmake --build build_dir --config ${{ env.BUILD_TYPE }}
3333

3434
- name: Run Tests
35-
working-directory: ${{ env.APP_DIR }}
35+
working-directory: build_dir
3636
shell: bash
3737
run: ctest

0 commit comments

Comments
 (0)