Skip to content

Commit

Permalink
github: Fix syntax in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
saprykin committed Sep 24, 2023
1 parent 5721f01 commit f8e200a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
cd ../plibsys-build
ctest
- name: coverage-install
if: ${{ success() && startsWith(${{ matrix.CC }}, 'gcc' }}
if: ${{ success() && startsWith(env.matrix.CC, 'gcc') }}
run: |
pwd
if [ "$RUNNER_OS" == "Linux" ]; then
Expand All @@ -54,7 +54,7 @@ jobs:
pip install codecov-cli
echo "CODECOV_OS=${RUNNER_OS,,}" >> ${GITHUB_ENV}
- name: coverage-run
if: ${{ success() && startsWith(${{ matrix.CC }}, 'gcc' }}
if: ${{ success() && startsWith(env.matrix.CC, 'gcc') }}
run: |
pwd
codecovcli create-commit -t ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit f8e200a

Please sign in to comment.