Skip to content

Commit aae75e9

Browse files
committed
Fix report workflow
1 parent a6fc0d2 commit aae75e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cp security-python3.9/.security.json ../
3636
3737
- name: Generate Report
38-
run: poetry run nox -s report -- -- --format json | tee metrics.json
38+
run: poetry run nox -s project:report -- -- --format json | tee metrics.json
3939

4040
- name: Upload Artifacts
4141
uses: actions/[email protected]
@@ -46,7 +46,7 @@ jobs:
4646
- name: Generate GitHub Summary
4747
run: |
4848
echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY
49-
poetry run nox -s report -- -- --format markdown >> $GITHUB_STEP_SUMMARY
49+
poetry run nox -s project:report -- -- --format markdown >> $GITHUB_STEP_SUMMARY
5050
echo -e "\n\n# Coverage\n" >> $GITHUB_STEP_SUMMARY
5151
poetry run coverage report -- --format markdown >> $GITHUB_STEP_SUMMARY
5252
echo -e "\n\n# Static Code Analysis\n" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)