From 2208307c482316febd276b2f7778df638672418a Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Tue, 9 Dec 2025 01:00:00 +0800 Subject: [PATCH] Fix: refine ci output --- .gitea/workflows/test.yml | 4 +++- Makefile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 71145d8..6847ade 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -16,8 +16,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Run docker compose + run: make docker-quiet - name: Run go test - run: make test-ci + run: make test cleanup-go-test: needs: run-go-test runs-on: imgbuilder diff --git a/Makefile b/Makefile index b8379f9..ba4f34a 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ SWAG ?= go run github.com/swaggo/swag/cmd/swag@v1.16.4 DOCKER ?= docker -COMPOSE ?= $(DOCKER) compose -p go2025-backend +COMPOSE ?= $(DOCKER) compose -p go2025-backend --progress plain GO_ENV += CGO_ENABLED=0 SOURCE := $(shell find . -type f -name '*.go')