Skip to content

Commit

Permalink
fix: 🐛 Fix quotes in the Test.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Jun 10, 2024
1 parent 480fa60 commit 4a06002
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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:
Expand Down
2 changes: 1 addition & 1 deletion template/.github/workflows/Test.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
version: {% raw %}${{ matrix.version }}{% endraw %}
arch: {% raw %}${{ matrix.arch }}{% endraw %}
allow_failure: {% raw %}${{ matrix.allow_failure }}{% endraw %}
run_codecov: {% raw %}${{ matrix.version == "1" && matrix.os == "ubuntu-latest" }}{% endraw %}
run_codecov: {% raw %}${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}{% endraw %}
secrets:
codecov_token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}
strategy:
Expand Down

0 comments on commit 4a06002

Please sign in to comment.