1
1
mirror of https://github.com/nektos/act.git synced 2024-09-19 08:17:57 +03:00
act/main.go

35 lines
476 B
Go

package main
import (
"context"
"os"
"os/signal"
"github.com/nektos/act/cmd"
)
var version string
func main() {
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
// trap Ctrl+C and call cancel on the context
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
defer func() {
signal.Stop(c)
cancel()
}()
go func() {
select {
case <-c:
cancel()
case <-ctx.Done():
}
}()
// run the command
cmd.Execute(ctx, version)
}