Skip to content

Commit

Permalink
Merge pull request #19 from pedrox-hs/workflows/codecov
Browse files Browse the repository at this point in the history
Fix Codecov flag
  • Loading branch information
kodiakhq[bot] authored Nov 3, 2023
2 parents 930accf + 9c1cc1d commit e241653
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,14 @@ jobs:
flutter test --coverage
fi
- name: Normalize Codecov fag name
id: codecov-flag
run: |
echo "name=$(echo ${{ matrix.tests }} | sed -e 's/\//./g')" >> $GITHUB_OUTPUT
- name: Codecov
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.tests }}
flags: ${{ steps.codecov-flag.outputs.name }}
file: ${{ matrix.tests }}/coverage/lcov.info

0 comments on commit e241653

Please sign in to comment.