From: W.C.A. Wijngaards Date: Thu, 24 Jun 2021 07:58:43 +0000 (+0200) Subject: workflow yml uses single quoted strings. X-Git-Tag: release-1.13.2rc1~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db7a7c0239798f3a363cbfb87f1ca685ccf2f02c;p=thirdparty%2Funbound.git workflow yml uses single quoted strings. --- diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index 0b880d6e3..1c4f46abc 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -17,14 +17,14 @@ jobs: - os: ubuntu-latest name: GCC on Linux env: - - CONFIG_OPTS: "--enable-debug --disable-flto" - - MAKE_TEST: "yes" + - CONFIG_OPTS: '--enable-debug --disable-flto' + - MAKE_TEST: 'yes' - os: ubuntu-latest name: Clang on Linux, clang-analysis env: - - CONFIG_OPTS: "CC=clang --enable-debug --disable-flto" - - MAKE_TEST: "yes" - - TEST_ANALYZER: "yes" + - CONFIG_OPTS: 'CC=clang --enable-debug --disable-flto' + - MAKE_TEST: 'yes' + - TEST_ANALYZER: 'yes' steps: - uses: actions/checkout@v2