Skip to content

Commit

Permalink
Revert "Fix workflows 'errors' shown in vscode."
Browse files Browse the repository at this point in the history
This reverts commit 4c03002.
  • Loading branch information
Algiane committed Apr 19, 2024
1 parent f381129 commit feb6a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
# job
jobs:
ci:
if: ! contains(github.event.head_commit.message, '[skip ci]')
if: "! contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ${{ matrix.os }}

# Launch a matrix of jobs
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
NJOBS: "2"

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

0 comments on commit feb6a14

Please sign in to comment.