1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-06 01:37:57 +02:00

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()
}