Skip to content

Commit

Permalink
release.yml: Install man page rendering dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed May 15, 2022
1 parent 6a2d31a commit 8f96303
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install tox
run: >-
python3 -m
pip install
--user
tox
- name: Install dependencies
run: |
set -x
sudo apt-get update
sudo apt-get install --yes --no-install-recommends -V \
libxml2-utils \
docbook-xml \
docbook-xsl \
xsltproc
python3 -m pip install --user tox
- name: Check out src from Git
uses: actions/checkout@v2
with:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
set -x
sudo apt-get update
sudo apt-get install --yes --no-install-recommends -V \
libxml2-utils \
docbook-xml \
docbook-xsl \
xsltproc
python -m pip install -U pip
pip install tox coverage
- name: Run tox -e ${{ matrix.tox_env }}
Expand Down

0 comments on commit 8f96303

Please sign in to comment.