Skip to content

Commit d191a4a

Browse files
committed
Fix issue with code-scan job
Fixed the issue with the code-scan job in the Github actions pipeline which was causing it to fail.
1 parent dca5673 commit d191a4a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,19 @@ jobs:
6868

6969

7070
code-scan:
71+
needs: test
7172
runs-on: ubuntu-latest
7273
steps:
7374
- uses: actions/checkout@v3
7475
with:
7576
fetch-depth: 0
7677

78+
- name: Download JaCoCo reports
79+
uses: actions/download-artifact@v4
80+
with:
81+
name: jacoco-reports
82+
path: target/site/jacoco/
83+
7784
- name: Setup Code Climate
7885
run: |
7986
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter

0 commit comments

Comments
 (0)