Skip to content

Commit 257f7c2

Browse files
authored
fix syntax in actions
1 parent 9383ccb commit 257f7c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/rxcpp-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@ jobs:
2020
name: "Linux GCC 9 Debug (C++14)", artifact: "Linux.tar.xz",
2121
os: ubuntu-latest,
2222
build_type: Debug,
23-
cc: "gcc-9", cxx: "g++-9"
23+
cc: "gcc-9", cxx: "g++-9",
2424
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=14"
2525
}
2626
- {
2727
name: "Linux GCC 9 Optimised (C++14)", artifact: "Linux.tar.xz",
2828
os: ubuntu-latest,
2929
build_type: RelWithDebInfo,
30-
cc: "gcc-9", cxx: "g++-9"
30+
cc: "gcc-9", cxx: "g++-9",
3131
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=14"
3232
}
3333
- {
3434
name: "Linux GCC 9 Debug (C++17)", artifact: "Linux.tar.xz",
3535
os: ubuntu-latest,
3636
build_type: Debug,
37-
cc: "gcc-9", cxx: "g++-9"
37+
cc: "gcc-9", cxx: "g++-9",
3838
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=17"
3939
}
4040
- {
4141
name: "Linux GCC 9 Optimised (C++17)", artifact: "Linux.tar.xz",
4242
os: ubuntu-latest,
4343
build_type: RelWithDebInfo,
44-
cc: "gcc-9", cxx: "g++-9"
44+
cc: "gcc-9", cxx: "g++-9",
4545
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=17"
4646
}
4747
- {

0 commit comments

Comments
 (0)