Skip to content

Commit

Permalink
fix(ci): fix and remve coverage steps in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
spool committed Jun 13, 2024
1 parent 626af4a commit d53fbd8
Showing 1 changed file with 4 additions and 30 deletions.
34 changes: 4 additions & 30 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,40 +46,14 @@ jobs:
run: poetry run pytest

- name: Python Coverage Comment
uses: py-cov-action/python-coverage-comment-action@v2.2.0

- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v3
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
# If you use a different name, update COMMENT_ARTIFACT_NAME accordingly
name: python-coverage-comment-action

coverage:
name: Coverage
runs-on: ubuntu-latest
needs: [pytest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x

- uses: actions/download-artifact@v3
id: download
with:
name: "coverage"

- name: Coverage comment
id: coverage_comment
uses: py-cov-action/python-coverage-comment-action@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_COVERAGE_FILES: true
GITHUB_TOKEN: ${{ github.token }}


- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
# If you use a different name, update COMMENT_ARTIFACT_NAME accordingly
name: python-coverage-comment-action
path: python-coverage-comment-action.txt

0 comments on commit d53fbd8

Please sign in to comment.