mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-21 04:16:46 +08:00
12 lines
120 B
Go
12 lines
120 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(_ *testing.T) {
|
|
os.Args = []string{"act", "--help"}
|
|
main()
|
|
}
|