diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebf7991..42c85bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,7 @@ jobs: uses: golangci/golangci-lint-action@v3 with: version: latest - args: --timeout=5m + args: --timeout=5m --tests=false security: runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index 529278e..0f118d7 100644 --- a/Makefile +++ b/Makefile @@ -37,18 +37,6 @@ docker-run: docker-build ## Run with Docker Compose @docker-compose up -d @echo "Access the application at http://localhost:8080" -docker-stop: ## Stop Docker Compose - @echo "🛑 Stopping Docker Compose..." - @docker-compose down - -k8s-deploy: docker-build ## Deploy to Kubernetes - @echo "☸️ Deploying to Kubernetes..." - @./scripts/deploy.sh - -k8s-undeploy: ## Remove from Kubernetes - @echo "☸️ Removing from Kubernetes..." - @./scripts/undeploy.sh - deps: ## Download dependencies @echo "📦 Downloading dependencies..." @go mod download