exclude act pkg from vet

This commit is contained in:
Christopher Homberger
2026-02-23 23:33:02 +01:00
parent b53c54f73d
commit c192d65d18
4 changed files with 7 additions and 1 deletions

View File

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