Files
act_runner/pkg/gh/gh_test.go
2025-02-01 11:07:17 +01:00

12 lines
138 B
Go

package gh
import (
"context"
"testing"
)
func TestGetToken(t *testing.T) {
token, _ := GetToken(context.TODO(), "")
t.Log(token)
}