Skip to content

Commit

Permalink
fix install in gha
Browse files Browse the repository at this point in the history
  • Loading branch information
wckdouglas committed May 21, 2024
1 parent ac726a6 commit 116e254
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,22 @@ jobs:
- name: Test with pytest
run: |
rye test -- -l -rPap -vvv -p no:warnings --cov --cov-report xml:coverage.xml
- name: codecov
run: |
bash <(curl -s https://codecov.io/bash)
rye test -- -l -rPap -vvv -p no:warnings --cov
- uses: py-cov-action/python-coverage-comment-action@v3
id: coverage_comment
if: ${{ matrix.python-version }} == "3.9"
with:
GITHUB_TOKEN: ${{ github.token }}
ANNOTATE_MISSING_LINES: true


- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v4
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
name: python-coverage-comment-action
path: python-coverage-comment-action.txt


publish:
Expand Down

0 comments on commit 116e254

Please sign in to comment.