Skip to content

Commit d10f74a

Browse files
committed
refactor: rename CI workflow jobs for clarity and add error handling
- Renamed 'test-install' to 'test-install-post-build' and 'test-cli-install' to 'test-cli-install-post-release' for better context. - Added 'continue-on-error: true' to both jobs to allow the workflow to proceed even if these steps fail, improving robustness.
1 parent fc025d4 commit d10f74a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,20 @@ jobs:
7373
version: ${{ needs.version.outputs.version }}
7474

7575
# Install, run and validate CLI version on various Linux distros
76-
test-install:
76+
test-install-post-build:
7777
needs: [build, version]
7878
uses: ./.github/workflows/test-install-post-build.yml
7979
with:
8080
version: ${{ needs.version.outputs.version }}
81+
continue-on-error: true
8182

8283
# Install, run and validate CLI version using installer script
83-
test-cli-install:
84+
test-cli-install-post-release:
8485
needs: [version, attach-to-release]
8586
if: github.event_name != 'release' || (github.event_name == 'release' && github.event.action == 'created')
8687
uses: ./.github/workflows/test-cli-install-post-release.yml
8788
with:
8889
version: ${{ needs.version.outputs.version }}
8990
python_version: '3.12'
9091
alpine_version: '3.21'
92+
continue-on-error: true

0 commit comments

Comments
 (0)