···1616test: ## Run all tests
1717 go test ./...
18181919+.PHONY: coverage-html
2020+coverage-html: ## Generate test coverage report and open in browser
2121+ go test ./... -coverprofile=test-coverage.out
2222+ go tool cover -html=test-coverage.out
2323+1924.PHONY: lint
2025lint: ## Run style checks and verify syntax
2126 go vet -asmdecl -assign -atomic -bools -buildtag -cgocall -copylocks -httpresponse -loopclosure -lostcancel -nilfunc -printf -shift -stdmethods -structtag -tests -unmarshal -unreachable -unsafeptr -unusedresult ./...