diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-25 00:47:47 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-25 00:47:47 +0200 |
| commit | c6cc0108ca7738023b45e0eeac0fa2390532dd93 (patch) | |
| tree | 36890e6cd3091bbab8efbe686cc56f467f645bfd /vendor/github.com/yuin/goldmark/Makefile | |
| parent | 0130404a1dc663d4aa68d780c9bcb23a4243e68d (diff) | |
| download | jbmafp-c6cc0108ca7738023b45e0eeac0fa2390532dd93.tar.gz | |
Diffstat (limited to 'vendor/github.com/yuin/goldmark/Makefile')
| -rw-r--r-- | vendor/github.com/yuin/goldmark/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/yuin/goldmark/Makefile b/vendor/github.com/yuin/goldmark/Makefile new file mode 100644 index 0000000..e34fe86 --- /dev/null +++ b/vendor/github.com/yuin/goldmark/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | .PHONY: test fuzz | ||
| 2 | |||
| 3 | test: | ||
| 4 | go test -coverprofile=profile.out -coverpkg=github.com/yuin/goldmark,github.com/yuin/goldmark/ast,github.com/yuin/goldmark/extension,github.com/yuin/goldmark/extension/ast,github.com/yuin/goldmark/parser,github.com/yuin/goldmark/renderer,github.com/yuin/goldmark/renderer/html,github.com/yuin/goldmark/text,github.com/yuin/goldmark/util ./... | ||
| 5 | |||
| 6 | cov: test | ||
| 7 | go tool cover -html=profile.out | ||
| 8 | |||
| 9 | fuzz: | ||
| 10 | cd ./fuzz && go test -fuzz=Fuzz | ||
