Skip to content

Commit

Permalink
resolved conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannis-Mittenzwei committed Dec 12, 2024
1 parent 50bd4c0 commit ed69c24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:
working-directory: ./artifacts
run: |
poetry run coverage combine --keep coverage-python3.9*/.coverage
cp .coverage ../
cp lint-python3.9/.lint.txt ../
cp security-python3.9/.security.json ../
cp .coverage ../ || true
cp lint-python3.9/.lint.txt ../ || true
cp security-python3.9/.security.json ../ || true
- name: Validate Artifacts
run: poetry run nox -s artifacts:validate

- name: Generate Report
run: poetry run nox -s project:report -- -- --format json | tee metrics.json
Expand Down
4 changes: 4 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

* Added new entries to the frequently asked questions regarding `multiversion documentation`

## ✨ Added

* Added a nox task to validate the build/test artifacts and use it in the github workflow report

## 🐞 Fixed

* Added multi-version extension to Sphinx configuration of the project template

0 comments on commit ed69c24

Please sign in to comment.