File: makefile

package info (click to toggle)
golang-github-meilisearch-meilisearch-go 0.33.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 956 kB
  • sloc: makefile: 9
file content (8 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
.PHONY: test requirements

test:
	docker compose run --rm package bash -c "go get && golangci-lint run -v && go test -v ./..."

requirements:
	curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh
	go get -v -t ./...