From 587019cb910305d9d60198ad5180faae611d42eb Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Tue, 4 Jun 2024 20:26:19 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Cannot=20use=20double=20q?= =?UTF-8?q?uotes=20in=20interpolation=20in=20GHA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the ${{ ... }} commands, only single quotes are allowed. --- .github/workflows/Test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 8feb7ebd..4cab333d 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -15,7 +15,7 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} allow_failure: ${{ matrix.allow_failure }} - run_codecov: ${{ matrix.version == "1" && matrix.os == "ubuntu-latest" }} + run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }} secrets: codecov_token: ${{ secrets.CODECOV_TOKEN }} strategy: