diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4157cd..a4fb465 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,7 @@ jobs: go-version: '1.22' - name: test - run: | - make meta - make cover + run: make cover - name: report-coverage uses: codecov/codecov-action@v4 diff --git a/Makefile b/Makefile index bb2c5ea..6a49172 100644 --- a/Makefile +++ b/Makefile @@ -6,10 +6,10 @@ debug: tidy: @go mod tidy -cover: tidy +cover: tidy vet @go test -race -failfast -parallel 1 -gcflags="all=-N -l" ${PACKAGES} -covermode=atomic -coverprofile=cover.out -test: tidy +test: tidy vet @go test -race -failfast -parallel 1 -gcflags="all=-N -l" ${PACKAGES} vet: