So I'm currently working on gatekeeper which is a deeply structured go app. It seems to me like it'd be really nice to be able to run a flow for *_test.go files.
How would we support this? Well, one approach would be to try and see if the the .flow.yaml keep is a regex, and if it is, then we could use that to check the current buffer.
^.*_test.go$:
cmd: go test -v .
Seems like this could be problematic WRT to escaping / handling special characters.