From c2faa56d099f2e63b0250833516e0978c7db5df9 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 18 Sep 2025 16:55:35 +0200 Subject: [PATCH] Added the "lib-release" task to the Makefile file. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2533eea..0eb871c 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,13 @@ export $(shell sed 's/=.*//' $(environment)) # LIBRARY -lib-build: ## Builds the project locally +lib-build: ## Builds the library @swift build -lib-test: ## Runs the tests of the library +lib-release: ## Releases the library + @swift build -c release + +lib-test: ## Runs the unit tests for the library @swift test \ --disable-xctest \ --enable-code-coverage \