From 7977e664bfbf30416c8f7667993c813dbdf67437 Mon Sep 17 00:00:00 2001 From: "stefan.rieckhof" Date: Fri, 23 Aug 2024 11:12:07 +0200 Subject: [PATCH] revert: call integration in the ci Makefile command --- .github/workflows/golang-ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golang-ci.yml b/.github/workflows/golang-ci.yml index fb47a390f..c88e7db61 100644 --- a/.github/workflows/golang-ci.yml +++ b/.github/workflows/golang-ci.yml @@ -26,7 +26,7 @@ jobs: sudo apt-get update sudo apt-get install -y docker-compose - name: Integration tests - run: docker-compose run testserver make ci + run: docker-compose run testserver make integration - name: Send coverage uses: shogo82148/actions-goveralls@v1 with: diff --git a/Makefile b/Makefile index 30ee4572b..6a3bce69e 100644 --- a/Makefile +++ b/Makefile @@ -66,4 +66,4 @@ testserver: docker-compose up ci: - $(GO) integration $(GO_TEST_FLAGS) -covermode=atomic -coverprofile=coverage.out ./... + $(GO) test $(GO_TEST_FLAGS) -covermode=atomic -coverprofile=coverage.out ./...