Skip to content

Commit

Permalink
fix(workflows): c.out was not cached after the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Wabri committed Aug 5, 2024
1 parent de73351 commit 452a8a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/saptune-ut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
- name: Run saptune unit tests
run: docker exec -t saptune-ci /bin/sh -c "cd /app; ./run_saptune_ci_tst.sh;"

- uses: actions/upload-artifact@v2
with:
name: coverprofile
path: app/c.out

- name: Stop and remove Container Image
run: |
docker stop saptune-ci
Expand All @@ -42,6 +47,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v2
with:
name: coverprofile

- name: Set ENV for codeclimate (push)
run: |
echo "GIT_BRANCH=${{ github.ref }}" >> $GITHUB_ENV
Expand Down

0 comments on commit 452a8a6

Please sign in to comment.