Skip to content

Commit

Permalink
remove unnecessary GH actions expression syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst committed May 13, 2023
1 parent a9297d4 commit 7a63c55
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ jobs:
pytest -n 2 -v --cov={{ cookiecutter.package_name }} --cov-report=xml --color=yes {{ cookiecutter.package_name }}/tests/
- name: codecov
if: ${{ github.repository == '{{ cookiecutter.github_host_account }}/{{ cookiecutter.repo_name }}'
&& github.event_name != 'schedule' }}
if: github.repository == '{{ cookiecutter.github_host_account }}/{{ cookiecutter.repo_name }}' && github.event_name != 'schedule'
uses: codecov/codecov-action@v3
with:
file: coverage.xml
Expand Down

0 comments on commit 7a63c55

Please sign in to comment.