ooni-probe-cli/GHGEN/main.go

13 lines
179 B
Go

// Command GHGEN regenerates selected GitHub actions.
package main
import (
_ "embed"
)
func main() {
for name, jobs := range Config {
generateWorkflowFile(name, jobs)
}
}