Use artifact action v3 for Gitea Actions compatibility.
PR Title Check / check-title (pull_request) Successful in 5s
Code Quality Pipeline / code-quality (pull_request) Successful in 24s
Test Python Package / unit-tests (pull_request) Successful in 22s
Test Python Package / integration-tests (pull_request) Successful in 32s
Test Python Package / coverage-report (pull_request) Failing after 3m18s
PR Title Check / check-title (pull_request) Successful in 5s
Code Quality Pipeline / code-quality (pull_request) Successful in 24s
Test Python Package / unit-tests (pull_request) Successful in 22s
Test Python Package / integration-tests (pull_request) Successful in 32s
Test Python Package / coverage-report (pull_request) Failing after 3m18s
Gitea does not support upload-artifact/download-artifact v4 yet. Co-authored-by: Cursor <[email protected]>
This commit is contained in:
co-authored by
Cursor
parent
9538e4d26d
commit
5d33ec6091
@@ -33,7 +33,7 @@ jobs:
|
|||||||
--cov-report=
|
--cov-report=
|
||||||
|
|
||||||
- name: Upload unit coverage
|
- name: Upload unit coverage
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage-unit
|
name: coverage-unit
|
||||||
path: .coverage
|
path: .coverage
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
--cov-report=
|
--cov-report=
|
||||||
|
|
||||||
- name: Upload integration coverage
|
- name: Upload integration coverage
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage-integration
|
name: coverage-integration
|
||||||
path: .coverage
|
path: .coverage
|
||||||
@@ -96,13 +96,13 @@ jobs:
|
|||||||
run: uv sync --all-extras
|
run: uv sync --all-extras
|
||||||
|
|
||||||
- name: Download unit coverage
|
- name: Download unit coverage
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage-unit
|
name: coverage-unit
|
||||||
path: coverage-unit
|
path: coverage-unit
|
||||||
|
|
||||||
- name: Download integration coverage
|
- name: Download integration coverage
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage-integration
|
name: coverage-integration
|
||||||
path: coverage-integration
|
path: coverage-integration
|
||||||
|
|||||||
Reference in New Issue
Block a user