You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix warning about matrix.json not valid for code highlighting (#793)
Fixing the following warning:
```sh
Warning, treated as error:
hunter/docs/creating-new/test/ci.rst:84:Could not lex literal_block as "JSON". Highlighting skipped.
```
The referenced codeblock is the following:
```rst
.. literalinclude:: ../../../.github/workflows/ci/matrix.json
:language: JSON
```
The `matrix.json` file contains `//` comments, which are not valid json tripping the highlighting.
Removing the `:language: JSON` part fixes this warning
Fixes: #790
Each line defines parameters for a job that will run on `GitHub-hosted runner <https://docs.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners>`__:
0 commit comments