Update repo
This commit is contained in:
@@ -24,17 +24,18 @@ jobs:
|
|||||||
ls -la ${{ github.workspace }}/backend
|
ls -la ${{ github.workspace }}/backend
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: coverage
|
name: coverage
|
||||||
path: ${{ github.workspace }}/backend/.coverage
|
path: backend/.coverage # Use workspace-relative path
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
load-file-example:
|
load-file-example:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
needs: [unit-tests]
|
needs: [unit-tests]
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: coverage
|
name: coverage
|
||||||
path: ${{ github.workspace }} # Move the coverage to ${{ github.workspace }}
|
path: ${{ github.workspace }} # Move the coverage to ${{ github.workspace }}
|
||||||
|
|||||||
Reference in New Issue
Block a user