diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07b0bb93..d278ce2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,9 +39,7 @@ jobs: uses: SwiftyLab/setup-swift@latest with: swift-version: '6.0' - - name: show swift version - run: swift --version - name: Build - run: make build + run: make build-verbose - name: Test run: make test diff --git a/Makefile b/Makefile index c78763cd..23ae7abf 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,10 @@ test: githooks build: githooks ./scripts/run.sh build +.PHONY: build-verbose +build-verbose: githooks + ./scripts/run.sh build --verbose + .PHONY: clean clean: ./scripts/run.sh package clean