Files
act_runner/internal/app/act-cli/main_test.go
Christopher Homberger c192d65d18 exclude act pkg from vet
2026-02-23 23:33:02 +01:00

12 lines
120 B
Go

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