Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixS90 committed Jun 5, 2024
1 parent 4c03dc4 commit 1b5f149
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/actions/steps_download/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ runs:
uses: actions/download-artifact@v4.1.0
with:
name: "${{inputs.ArtifactName}}"
path: "${{runner.temp}}/${{inputs.ArtifactName}}"
- name: Use Python ${{inputs.PyVersionLatest}}
uses: actions/setup-python@v5.0.0
with:
Expand All @@ -24,14 +25,14 @@ runs:
shell: bash
- name: List files
run: Get-ChildItem -Path .\ -Recurse -Force
working-directory: "${{ github.workspace }}"
working-directory: "${{ runner.temp }}"
shell: pwsh
- name: Unit and Integration Tests
env:
TEMP: "${{ runner.temp }}"
TMP: "${{ runner.temp }}"
TESTRESULTSPATH: "${{ runner.temp }}"
COVRESULTSPATH: "${{ runner.temp }}\\cov.xml"
run: tox --installpkg ${{ github.workspace }}/${{inputs.ArtifactName}}/* -vv -r -s true
run: tox --installpkg ${{ runner.temp }}/${{inputs.ArtifactName}}/* -vv -r -s true
shell: bash
working-directory: "${{inputs.PkgRootFolder}}"
2 changes: 1 addition & 1 deletion .github/workflows/build-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
working-directory: "${{ runner.temp }}\\cov_results"
- name: Upload Coverage
if: success() || failure()
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
# Hard copy from step above due to https://github.com/actions/runner/issues/2204
directory: ${{ runner.temp }}/cov_results
Expand Down

0 comments on commit 1b5f149

Please sign in to comment.