feat: Support graceful job step cancellation (#69)

* for gh-act-runner
* act-cli support as well
* respecting always() and cancelled() of steps
* setup-job, bug report, gh cli and watch wait call is cancelled early
This commit is contained in:
ChristopherHX
2025-03-29 12:27:36 +01:00
committed by GitHub
parent dde298852a
commit cef5575fa4
8 changed files with 242 additions and 28 deletions

11
main_test.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"os"
"testing"
)
func TestMain(_ *testing.T) {
os.Args = []string{"act", "--help"}
main()
}