Skip to content

Commit 81f9a2e

Browse files
author
Datata1
committed
test: fix ci
1 parent 798f005 commit 81f9a2e

File tree

2 files changed

+5
-26
lines changed

2 files changed

+5
-26
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
echo "Running Bandit security check..."
4040
set +e
41-
uv run bandit -r . --format=custom --msg-template "{abspath}:{line}: {test_id}[{severity}]: {msg}" -o bandit-results.txt
41+
uv run bandit -r src/codesphere --format=custom --msg-template "{abspath}:{line}: {test_id}[{severity}]: {msg}" -o bandit-results.txt
4242
BANDIT_EXIT_CODE=$?
4343
set -e
4444

.github/workflows/integration.yml

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -47,34 +47,13 @@ jobs:
4747
--junitxml=junit/integration-results.xml \
4848
--tb=short
4949
50-
- name: Upload test results
51-
uses: actions/upload-artifact@v4
52-
if: always()
53-
with:
54-
name: integration-test-results
55-
path: junit/integration-results.xml
56-
retention-days: 30
57-
58-
- name: Minimize uv cache
59-
run: uv cache prune --ci
60-
61-
integration-tests-summary:
62-
name: Integration Tests Summary
63-
runs-on: ubuntu-latest
64-
needs: integration-tests
65-
if: always()
66-
67-
steps:
68-
- name: Download test results
69-
uses: actions/download-artifact@v4
70-
with:
71-
name: integration-test-results
72-
path: junit
73-
7450
- name: Publish Test Results
7551
uses: EnricoMi/publish-unit-test-result-action@v2
7652
if: always()
7753
with:
7854
files: junit/integration-results.xml
7955
check_name: Integration Test Results
80-
comment_mode: on
56+
comment_mode: always
57+
58+
- name: Minimize uv cache
59+
run: uv cache prune --ci

0 commit comments

Comments
 (0)