Skip to content

Commit 92bfdce

Browse files
committed
Specify Bash shell explicitly for CI/CD workflow steps to fix windows pathing issues
1 parent 4cc69d7 commit 92bfdce

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/CI-CD.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ jobs:
4949
echo "CC=clang-17" >> $GITHUB_ENV
5050
5151
- name: Configure CMake
52+
shell: bash
5253
run: |
5354
cmake -S tests/ -B build \
5455
-DCMAKE_BUILD_TYPE=Debug \
5556
-DCMAKE_CXX_STANDARD=${{ matrix.cpp_standard }} \
5657
-DCMAKE_CXX_STANDARD_REQUIRED=ON
5758
5859
- name: Build
60+
shell: bash
5961
run: cmake --build build --config Debug
6062

6163
- name: Run Tests

0 commit comments

Comments
 (0)