Skip to content

Commit

Permalink
Updates code_coverage workflow to run on push to master and PR approval
Browse files Browse the repository at this point in the history
Changed workflow to trigger on push events to the master branch and when PRs are ready for review or closed.
  • Loading branch information
isFakeAccount committed Jun 16, 2024
1 parent fd50771 commit 7f14203
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/code_coverage.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: code coverage
on:
push:
branches: ["master"]
branches:
- master
pull_request:
branches: ["master"]
branches:
- master
types:
- ready_for_review
- closed

jobs:
pre-commit:
Expand Down

0 comments on commit 7f14203

Please sign in to comment.