File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ REDIS_CACHE_FORCE_PULL=false # Force pull Redis images even when cache
232232# 🪄 MAGE-X CONFIGURATION
233233# ================================================================================================
234234
235- MAGE_X_VERSION=v1.7.10 # https://github.com/mrz1836/mage-x/releases
235+ MAGE_X_VERSION=v1.7.12 # https://github.com/mrz1836/mage-x/releases
236236MAGE_X_USE_LOCAL=false # Use local version for development
237237MAGE_X_AUTO_DISCOVER_BUILD_TAGS=true # Enable auto-discovery of build tags
238238MAGE_X_AUTO_DISCOVER_BUILD_TAGS_EXCLUDE=race,custom # Comma-separated list of tags to exclude
@@ -319,7 +319,7 @@ GO_PRE_COMMIT_MAX_FILES_OPEN=100
319319GO_PRE_COMMIT_ALL_FILES=true
320320
321321# Tool Versions
322- GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.1 # hhttps ://github.com/golangci/golangci-lint/releases
322+ GO_PRE_COMMIT_GOLANGCI_LINT_VERSION=v2.6.1 # https ://github.com/golangci/golangci-lint/releases
323323GO_PRE_COMMIT_FUMPT_VERSION=v0.9.2 # https://github.com/mvdan/gofumpt/releases
324324GO_PRE_COMMIT_GOIMPORTS_VERSION=latest # https://github.com/golang/tools
325325
Original file line number Diff line number Diff line change @@ -206,6 +206,7 @@ jobs:
206206 # ----------------------------------------------------------------------------------
207207 lint :
208208 name : ✨ Lint Code
209+ timeout-minutes : 20
209210 if : ${{ inputs.go-lint-enabled == 'true' }}
210211 runs-on : ${{ inputs.primary-runner }}
211212 outputs :
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 # Download specific artifacts needed for statistics processing
101101 # --------------------------------------------------------------------
102102 - name : 📥 Download test statistics
103- if : always()
103+ if : always() && env.ENABLE_GO_TESTS == 'true'
104104 uses : ./.github/actions/download-artifact-resilient
105105 with :
106106 pattern : " test-stats-*"
@@ -136,7 +136,7 @@ jobs:
136136 continue-on-error : ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
137137
138138 - name : 📥 Download internal coverage statistics
139- if : always() && env.GO_COVERAGE_PROVIDER == 'internal'
139+ if : always() && env.ENABLE_GO_TESTS == 'true' && env. GO_COVERAGE_PROVIDER == 'internal'
140140 uses : ./.github/actions/download-artifact-resilient
141141 with :
142142 pattern : " coverage-stats-internal"
@@ -148,7 +148,7 @@ jobs:
148148 continue-on-error : true
149149
150150 - name : 📥 Download codecov coverage statistics
151- if : always() && env.GO_COVERAGE_PROVIDER == 'codecov'
151+ if : always() && env.ENABLE_GO_TESTS == 'true' && env. GO_COVERAGE_PROVIDER == 'codecov'
152152 uses : ./.github/actions/download-artifact-resilient
153153 with :
154154 pattern : " coverage-stats-codecov"
Original file line number Diff line number Diff line change 7878 # Download specific artifacts needed for test analysis
7979 # --------------------------------------------------------------------
8080 - name : 📥 Download test statistics
81- if : always()
81+ if : always() && env.ENABLE_GO_TESTS == 'true'
8282 uses : ./.github/actions/download-artifact-resilient
8383 with :
8484 pattern : " test-stats-*"
@@ -114,7 +114,7 @@ jobs:
114114 continue-on-error : ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
115115
116116 - name : 📥 Download test failure artifacts
117- if : always()
117+ if : always() && env.ENABLE_GO_TESTS == 'true'
118118 uses : ./.github/actions/download-artifact-resilient
119119 with :
120120 pattern : " test-results-unit-*"
@@ -126,7 +126,7 @@ jobs:
126126 continue-on-error : ${{ env.ARTIFACT_DOWNLOAD_CONTINUE_ON_ERROR }}
127127
128128 - name : 📥 Download fuzz test failure artifacts
129- if : always()
129+ if : always() && env.ENABLE_GO_TESTS == 'true' && env.ENABLE_FUZZ_TESTING == 'true'
130130 uses : ./.github/actions/download-artifact-resilient
131131 with :
132132 pattern : " test-results-fuzz-*"
You can’t perform that action at this time.
0 commit comments