Skip to content

Commit 80b2b1c

Browse files
Stop trying to split command over multiple lines
1 parent cf927aa commit 80b2b1c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ jobs:
2020
run: |
2121
mkdir build
2222
cd build
23-
cmake .. -G Ninja \\
24-
-DCMAKE_BUILD_TYPE=Release \\
25-
-DCMAKE_C_COMPILER=/usr/bin/gcc \\
26-
-DCMAKE_CXX_COMPILER=/usr/bin/g++
23+
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++
2724
- name: Build with Ninja
2825
run: cd build; ninja
2926
- name: Run tests

0 commit comments

Comments
 (0)