Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMENT_OUTPUT: TRUE
- uses: mshick/add-pr-comment@v3
# Check if the event is not triggered by a fork before attempting to add a comment
# see https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#restrictions-on-repository-forks
if: github.event.pull_request.head.repo.full_name == github.repository
with:
message: |
Commit ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ To run all checks that have to pass for a merge requests locally, first make sur

```bash
cargo install cargo-llvm-cov
pipx install diff_cover
pipx install diff-cover
```

Then, run the following command to run all checks including code coverage:
Expand Down
Loading