Skip to content

Commit

Permalink
Add ubuntu jammy package and refresh update CI (#27)
Browse files Browse the repository at this point in the history
* add jammy debian package
* update README with markdown usage
* updating CI with latest actions
  • Loading branch information
psycofdj authored Jun 18, 2023
1 parent 5bd9ede commit 3630f38
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Ubuntu packages
run: sudo apt-get install -y debhelper lintian fakeroot python-all python3-all python-setuptools dh-python
- name: Set up Python 3.6
uses: actions/setup-python@v2
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.6'
python-version: '3.9'
- name: Install python packages
run: |
pip install six urllib3 coverage-lcov
Expand Down
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,16 @@ optional arguments:
--version print version and exit
--verbose enabled verbose output
--json (deprecated) same as --format json-legacy
--format FORMAT output file format :
lcov : lcov compatible format (default)
json-v3 : json format which includes summary information
json-v2 : simpler json format
json-v1 : legacy json format
json : (deprecated) same as json-v2
json-legacy : (deprecated) same as json-v1
json-summary : summary in json format
summary : textual summary table format
--format FORMAT output file format :
lcov : lcov compatible format (default)
json-v3 : json format which includes summary information
json-v2 : simpler json format
json-v1 : legacy json format
json : (deprecated) same as json-v2
json-legacy : (deprecated) same as json-v1
json-summary : summary in json format
markdown-summary : ummary in markdown table format
summary : textual summary table format
--prefix PREFIX keep only file matching given path prefix
--exclude EXCLUDE exclude files whose absolute path matches a regular expression;
this option can be given multiple times
Expand Down Expand Up @@ -184,6 +185,7 @@ You can find his work at [alobbs/doxy-coverage](https://github.com/alobbs/doxy-c
## Hall of Fame

- [j-ulrich](https://github.com/j-ulrich) for his many contributions
- [antoniovazquezblanco](https://github.com/antoniovazquezblanco) for his many contributions


# Project status
Expand Down
2 changes: 1 addition & 1 deletion coverxygen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = "Xavier MARCELET <[email protected]>"
__copyright__ = "Copyright (C) 2016 Xavier MARCELET"
__version__ = "1.7.0"
__version__ = "1.8.0"
__description__ = "Generate doxygen's documentation coverage report"
__url__ = "https://github.com/psycofdj/coverxygen"
__download_url__ = "https://github.com/psycofdj/coverxygen/tarball/%s" % __version__
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
coverxygen (1.8.0ppa1~jammy) focal; urgency=medium

* add support for jammy

-- Xavier MARCELET <[email protected]> Sun, 18 Jun 2023 14:55:00 +0200

coverxygen (1.7.0ppa1~focal) focal; urgency=medium

* drop support for python2.7
Expand Down

0 comments on commit 3630f38

Please sign in to comment.