mirror of
https://github.com/xfrr/goffmpeg.git
synced 2025-09-26 19:01:19 +08:00

* cleanup readme & examples * upgrade go version * add makefile with basic commands * add e2e test * add gha * update .gitignore
7 lines
136 B
Makefile
7 lines
136 B
Makefile
|
|
|
|
test:
|
|
go test -v ./... -coverprofile=coverage.out -covermode=atomic -coverpkg=./...
|
|
|
|
coverage-html:
|
|
go tool cover -html=coverage.out
|