You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
Codecov doesn't run in Github Actions. This is because:
- The `github.ref == 'master'` condition is incorrect. We want the
_target_ branch, not the source branch.
- The `|| github.event_name == 'pull_request'` condition was removed in
034257e.
Solution:
Fix the condition. Note that `github.base_ref` is only defined for pull
requests, so we require `github.event_name == 'pull_request'`.
0 commit comments