Skip to content

Commit 4c03002

Browse files
committed
Fix workflows 'errors' shown in vscode.
1 parent 3cf02ac commit 4c03002

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main-job.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
# job
2727
jobs:
2828
ci:
29-
if: "! contains(github.event.head_commit.message, '[skip ci]')"
29+
if: ! contains(github.event.head_commit.message, '[skip ci]')
3030
runs-on: ${{ matrix.os }}
3131

3232
# Launch a matrix of jobs
@@ -192,7 +192,7 @@ jobs:
192192
NJOBS: "2"
193193

194194
- name: Set environment variables for output comparison
195-
if: "! contains(github.event.head_commit.message, '[skip output comparison]')"
195+
if: ! contains(github.event.head_commit.message, '[skip output comparison]')
196196
run: |
197197
echo "C_FLG=-DMMG_COMPARABLE_OUTPUT" >> "$GITHUB_ENV"
198198
echo "MMG_ERROR_RULE=\"COMMAND_ERROR_IS_FATAL ANY\"" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)