fix: actually add the test calls

This commit is contained in:
Michael Smith 2025-04-14 18:27:10 +00:00
parent 0a597c23f4
commit d2c5f8d3bd

View File

@ -17,7 +17,11 @@ func main() {
if err != nil {
log.Panic(err)
}
log.Println("running as %q", username)
log.Printf("running as %q\n", username)
_, _, err = github.ActionsRefs()
if err != nil {
log.Panic(err)
}
log.Println("Starting README validation")
allReadmeFiles, err := aggregateContributorReadmeFiles()