0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-06-02 08:19:40 +02:00

cleanup unused make target (#192)

This commit is contained in:
Robert Kaussow 2023-11-08 11:23:53 +01:00 committed by GitHub
parent 1aaca8e160
commit b8b2a98dac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 21 deletions

View File

@ -8,22 +8,6 @@ platform:
arch: amd64
steps:
- name: deps
image: docker.io/golang:1.21
commands:
- make deps
volumes:
- name: godeps
path: /go
- name: generate
image: docker.io/golang:1.21
commands:
- make generate
volumes:
- name: godeps
path: /go
- name: lint
image: docker.io/golang:1.21
commands:

View File

@ -19,7 +19,6 @@ GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@$(G
XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
GOTESTSUM_PACKAGE ?= gotest.tools/gotestsum@latest
GENERATE ?=
XGO_VERSION := go-1.21.x
XGO_TARGETS ?= linux/amd64,linux/arm64
@ -58,10 +57,6 @@ golangci-lint:
.PHONY: lint
lint: golangci-lint
.PHONY: generate
generate:
$(GO) generate $(GENERATE)
.PHONY: test
test:
$(GO) run $(GOTESTSUM_PACKAGE) -- -coverprofile=coverage.out $(PACKAGES)