diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ce33596..0573752 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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