Skip to content

Commit

Permalink
docs: Add coverage job steps
Browse files Browse the repository at this point in the history
Add steps to the CI job to compute the documentation coverage for the
package and archive the results.
  • Loading branch information
jmgate committed Jan 17, 2024
1 parent 0e01d96 commit b70d7a6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ jobs:
run: make spelling
working-directory: ./doc

- name: Check documentation coverage
run: make coverage
working-directory: ./doc

- name: Archive documentation coverage results
uses: actions/upload-artifact@v3
with:
name: docs-coverage-report
path: build/coverage/python.txt

- name: Test uninstall
run: python3 -m pip uninstall -y reverse_argparse

Expand Down
3 changes: 2 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

project = "reverse_argparse"
copyright = (
"2023, National Technology & Engineering Solutions of Sandia, LLC (NTESS)"
"2023–2024, National Technology & Engineering Solutions of Sandia, LLC "
"(NTESS)"
)
author = "Jason M. Gates"
version = "1.0.6"
Expand Down

0 comments on commit b70d7a6

Please sign in to comment.