Commit 31bfcd5
authored
fix: is_run error with local, group jobs (#2133)
### Description
Ran into a bug where executing a workflow locally causes a crash with
group jobs.
```
if self.workflow.verbose or (job.is_run and not job.is_group()):
^^^^^^^^^^
AttributeError: 'GroupJob' object has no attribute 'is_run'
```
Swapping the order of the checks fixes this issue; not sure why the CI
didn't catch this bug.1 parent a110ae0 commit 31bfcd5
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
674 | 674 | | |
675 | 675 | | |
676 | 676 | | |
677 | | - | |
| 677 | + | |
678 | 678 | | |
679 | 679 | | |
680 | 680 | | |
| |||
0 commit comments