Skip to content

Commit d2c5f8d

Browse files
committed
fix: actually add the test calls
1 parent 0a597c2 commit d2c5f8d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmd/readmevalidation/main.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ func main() {
1717
if err != nil {
1818
log.Panic(err)
1919
}
20-
log.Println("running as %q", username)
20+
log.Printf("running as %q\n", username)
21+
_, _, err = github.ActionsRefs()
22+
if err != nil {
23+
log.Panic(err)
24+
}
2125

2226
log.Println("Starting README validation")
2327
allReadmeFiles, err := aggregateContributorReadmeFiles()

0 commit comments

Comments
 (0)