Skip to content

Commit 6c9dad7

Browse files
committed
add test step to workflow
1 parent 7aba3fe commit 6c9dad7

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

.github/workflows/publish-docs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
1111
- name: Check out repo
1212
uses: actions/checkout@v4
13+
- name: Validate reST source
14+
run: make test
1315
- name: Build docs
1416
run: make multiversion
1517
- name: List built files

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $(VENV_NAME):
2929

3030
# test - check that local build will lint, spelling is correct, then
3131
# build the html site.
32-
test: license doc8 dict-check spelling linkcheck
32+
test: doc8 dict-check spelling linkcheck
3333

3434
# lint all .rst files
3535
doc8: $(VENV_NAME)

README.rst

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,40 @@
11
.. SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]>
22
SPDX-License-Identifier: Apache-2.0
33
4+
.. |pub-badge| image:: https://github.com/opennetworkinglab/aether-docs/actions/workflows/publish-docs.yml/badge.svg
5+
6+
|pub-badge|
7+
48
Aether Docs
59
===========
610

7-
This site contains Sphinx format documentation for the Aether project.
11+
This repo contains Sphinx-formated documentation for the Aether project.
812

913
Writing Documentation
1014
---------------------
1115

12-
Docs are generated using `Sphinx <https://www.sphinx-doc.org/en/master/usage/>`_ using the
16+
Docs are generated using `Sphinx <https://www.sphinx-doc.org/en/master/usage/>`_ with
1317
`reStructuredText <https://www.sphinx-doc.org/en/master/usage/restructuredtext/>`_ syntax.
1418
A cheat sheet for reStructuredText can be found `here <https://github.com/ralsina/rst-cheatsheet/blob/master/rst-cheatsheet.rst>`_.
1519

1620
Building Documentation
1721
--------------------------
1822

19-
The documentation build process is stored in a ``Makefile``. Building docs
20-
requires Python to be installed, and most steps will create a virtualenv
21-
(usually ``venv-docs``) which contains the required tools. You may also need
22-
to install the ``enchant`` C library using your system's package manager for
23-
the spelling checker to function properly.
23+
The documentation build process is stored in a ``Makefile``. Building
24+
docs requires Python to be installed, and most steps create a
25+
virtualenv (usually ``venv-docs``) which contains the required tools.
26+
You may also need to install the ``enchant`` C library using your
27+
system's package manager for the spelling checker to function
28+
properly.
2429

2530
Run ``make html`` to generate html documentation in ``_build/html``.
2631

2732
There is also a test target, ``make test``, which will run all the following
28-
checks. This is what happens to validate a patchset validation.
33+
checks. This is what happens to validate a patchset.
2934

3035
* ``make lint``: Check the formatting of documentation using `doc8
3136
<https://github.com/PyCQA/doc8>`_.
3237

33-
* ``make license``: Verifies licensing is correct.
34-
3538
* ``make spelling``: Checks spelling on all documentation. If there are
3639
additional words that are correctly spelled but not in the dictionary
3740
(acronyms, nouns, etc.) please add them to the ``dict.txt`` file, which
@@ -45,13 +48,13 @@ checks. This is what happens to validate a patchset validation.
4548
Versioning Documentation
4649
----------------------------------
4750

48-
To change the version shown on the built site, change the contents of the
51+
To change the version shown on the build site, change the contents of the
4952
``VERSION`` file to be released SemVer version. This will create a tag on the
5053
repo.
5154

52-
Then when ``make multiversion`` target can be used which will build all
53-
versions tagged or branched on the remote to ``_build/multiversion``. This will
54-
use a fork of `sphinx-multiversion
55+
The ``make multiversion`` target can then be used to build all
56+
versions tagged or branched on the remote to ``_build/multiversion``. This
57+
uses a fork of `sphinx-multiversion
5558
<https://github.com/Holzhaus/sphinx-multiversion>`_ to build multiple versions
5659
and a menu on the site.
5760

0 commit comments

Comments
 (0)