|
Ran
|
Files
25
|
Run time
103min
|
Badge
README BADGES
|
push
github
Hopefully final fix for check snapshots (#1792) * Fix logic for workflow dispatch Before the logic was like this: ``` matrix.run_check_snapshots_workflow == 'yes' && (github.event_name != 'workflow_dispatch' || (matrix.today_minus_n_days == 0 && inputs.strategy == matrix.name)) ``` and evaluated to this when running the workflow manually. ``` (true && ('yes' == 'yes') && (('workflow_dispatch' != 'workflow_dispatch') || ((0 == 0) && ('all' == 'big-merge')))) ``` Apparently the strategy comparison was causing the problem and not the `run_check_snapshot_workflow`. * Revert "Use yes/no string for matrix.run_check_snapshots_workflow" This reverts commit d779841f1. * Use comparison with 'true' again
1304 of 2351 relevant lines covered (55.47%)
0.55 hits per line
| Coverage | ∆ | File | Lines | Relevant | Covered | Missed | Hits/Line |
|---|