Skip to content

Commit c817589

Browse files
committed
Fix actions
1 parent 9521e03 commit c817589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
cppstd: [03, 11, 20]
10+
cppstd: ["03", "11", "20"]
1111
buildtype: ["cmake"]
1212
drafts: ["ON"]
1313
libzmq: ["4.3.4"]
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CC: gcc-10
3535
CXX: g++-10
36-
CMAKE_CPP_STD: DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
36+
CMAKE_CPP_STD: -DCMAKE_CXX_STANDARD=${{ matrix.cppstd }}
3737
BUILD_TYPE: ${{ matrix.buildtype }}
3838
ENABLE_DRAFTS: ${{ matrix.drafts }}
3939
ZMQ_VERSION: ${{ matrix.libzmq }}

0 commit comments

Comments
 (0)