mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
Documentation fine-tuning.
This commit is contained in:
30
.github/workflows/CheckCodeQuality.yml
vendored
30
.github/workflows/CheckCodeQuality.yml
vendored
@@ -35,14 +35,29 @@ on:
|
|||||||
default: '3.13'
|
default: '3.13'
|
||||||
type: string
|
type: string
|
||||||
package_directory:
|
package_directory:
|
||||||
description: '.'
|
description: 'The package''s directory'
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
requirements:
|
requirements:
|
||||||
description: ''
|
description: 'Python dependencies to be installed through pip.'
|
||||||
required: false
|
required: false
|
||||||
default: '-r requirements.txt'
|
default: '-r requirements.txt'
|
||||||
type: string
|
type: string
|
||||||
|
bandit:
|
||||||
|
description: 'Run bandit checks.'
|
||||||
|
required: false
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
|
radon:
|
||||||
|
description: 'Run radon checks.'
|
||||||
|
required: false
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
|
pylint:
|
||||||
|
description: 'Run pylint checks.'
|
||||||
|
required: false
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
artifact:
|
artifact:
|
||||||
description: 'Name of the package artifact.'
|
description: 'Name of the package artifact.'
|
||||||
required: true
|
required: true
|
||||||
@@ -52,6 +67,7 @@ jobs:
|
|||||||
Bandit:
|
Bandit:
|
||||||
name: 🚨 Security Scanning (Bandit)
|
name: 🚨 Security Scanning (Bandit)
|
||||||
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
||||||
|
if: inputs.bandit == 'true'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: ⏬ Checkout repository
|
- name: ⏬ Checkout repository
|
||||||
@@ -74,9 +90,18 @@ jobs:
|
|||||||
mkdir -p report/bandit
|
mkdir -p report/bandit
|
||||||
bandit -c pyproject.toml -r ${{ inputs.package_directory }} -f xml -o report/bandit/report.xml
|
bandit -c pyproject.toml -r ${{ inputs.package_directory }} -f xml -o report/bandit/report.xml
|
||||||
|
|
||||||
|
- name: 📊 Publish Bandit Results
|
||||||
|
uses: dorny/test-reporter@v2
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
name: 'Bandit Results'
|
||||||
|
path: 'report/bandit/report.xml'
|
||||||
|
reporter: java-junit
|
||||||
|
|
||||||
Radon:
|
Radon:
|
||||||
name: ☢️ Metrics and Complexity
|
name: ☢️ Metrics and Complexity
|
||||||
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
||||||
|
if: inputs.radon == 'true'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: ⏬ Checkout repository
|
- name: ⏬ Checkout repository
|
||||||
@@ -116,6 +141,7 @@ jobs:
|
|||||||
PyLint:
|
PyLint:
|
||||||
name: 🩺 Linting
|
name: 🩺 Linting
|
||||||
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
||||||
|
if: inputs.pylint == 'true'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: ⏬ Checkout repository
|
- name: ⏬ Checkout repository
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _ACTION/Releaser:
|
.. _ACTION/Releaser:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action; Releaser
|
||||||
|
|
||||||
Releaser
|
Releaser
|
||||||
########
|
########
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _ACTION/WithPostStep:
|
.. _ACTION/WithPostStep:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action; WithPostStep
|
||||||
|
|
||||||
with-post-step
|
with-post-step
|
||||||
##############
|
##############
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _ACTION:
|
.. _ACTION:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
########
|
########
|
||||||
@@ -9,6 +11,8 @@ The following 2 actions are provided by **Actions**:
|
|||||||
|
|
||||||
|
|
||||||
.. _ACTION/Instantiation:
|
.. _ACTION/Instantiation:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action; Instantiation
|
||||||
|
|
||||||
Instantiation
|
Instantiation
|
||||||
*************
|
*************
|
||||||
|
|||||||
128
doc/Glossary.rst
Normal file
128
doc/Glossary.rst
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
Glossary
|
||||||
|
########
|
||||||
|
|
||||||
|
.. glossary::
|
||||||
|
|
||||||
|
Bandit
|
||||||
|
Bandit is a tool designed to find common security issues in Python code.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/PyCQA/bandit/`__
|
||||||
|
:Package: `https://pypi.org/project/bandit/`__
|
||||||
|
:Documentation: `https://bandit.readthedocs.io/`__
|
||||||
|
|
||||||
|
build
|
||||||
|
A simple, correct Python build frontend.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/pypa/build/`__
|
||||||
|
:Package: `https://pypi.org/project/build/`__
|
||||||
|
:Documentation: `https://build.pypa.io/`__
|
||||||
|
|
||||||
|
Codacy
|
||||||
|
.. todo:: Add description of Codacy.
|
||||||
|
|
||||||
|
:Service: `Codacy.com <https://www.codacy.com/>`__
|
||||||
|
|
||||||
|
CodeCov
|
||||||
|
.. todo:: Add description of CodeCov.
|
||||||
|
|
||||||
|
:Service: `Codecov.io <https://about.codecov.io/>`__
|
||||||
|
|
||||||
|
Coverage.py
|
||||||
|
The code coverage tool for Python.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/nedbat/coveragepy/`__
|
||||||
|
:Package: `https://pypi.org/project/coverage/`__
|
||||||
|
:Documentation: `https://coverage.readthedocs.io/`__
|
||||||
|
|
||||||
|
delete-artifact
|
||||||
|
A GitHub Action to deletes artifacts within the workflow run.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/GeekyEggo/delete-artifact/`__
|
||||||
|
:Marketplace: `https://github.com/marketplace/actions/delete-artifact/`__
|
||||||
|
:README: `https://github.com/GeekyEggo/delete-artifact/blob/main/README.md`__
|
||||||
|
|
||||||
|
docstr_coverage
|
||||||
|
Docstring coverage analysis and rating for Python.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/HunterMcGushion/docstr_coverage/`__
|
||||||
|
:Package: `https://pypi.org/project/docstr_coverage/`__
|
||||||
|
:Documentation: `https://docstr-coverage.readthedocs.io/`__
|
||||||
|
|
||||||
|
gh
|
||||||
|
GitHub’s official command line tool.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/cli/cli/`__
|
||||||
|
:Documentation: `https://cli.github.com/manual/`__
|
||||||
|
|
||||||
|
GitHub Pages
|
||||||
|
GitHub Pages is a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository
|
||||||
|
on GitHub, optionally runs the files through a build process, and publishes a website.
|
||||||
|
|
||||||
|
:Documentation: https://docs.github.com/en/pages
|
||||||
|
|
||||||
|
interrogate
|
||||||
|
Explain yourself! Interrogate a codebase for docstring coverage.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/econchick/interrogate/`__
|
||||||
|
:Package: `https://pypi.org/project/interrogate/`__
|
||||||
|
:Documentation: `https://interrogate.readthedocs.io/`__
|
||||||
|
|
||||||
|
MikTeX
|
||||||
|
MiKTeX is a modern TeX distribution for Windows, Linux and macOS.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/MiKTeX/miktex/`__
|
||||||
|
:Documentation: `https://miktex.org/`__
|
||||||
|
|
||||||
|
mypy
|
||||||
|
Optional static typing for Python.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/python/mypy/`__
|
||||||
|
:Package: `https://pypi.org/project/mypy/`__
|
||||||
|
:Documentation: `https://www.mypy-lang.org/`__
|
||||||
|
|
||||||
|
pyEDAA.Reports
|
||||||
|
A collection of various (EDA tool-specific) report data formats.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/edaa-org/pyEDAA.Reports/`__
|
||||||
|
:Package: `https://pypi.org/project/pyEDAA.Reports/`__
|
||||||
|
:Documentation: `https://edaa-org.github.io/pyEDAA.Reports/`__
|
||||||
|
|
||||||
|
pip
|
||||||
|
The Python package installer.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/pypa/pip/`__
|
||||||
|
:Package: `https://pypi.org/project/pip/`__
|
||||||
|
:Documentation: `https://pip.pypa.io/`__
|
||||||
|
|
||||||
|
PyPI
|
||||||
|
Find, install and publish Python packages with the Python Package Index.
|
||||||
|
|
||||||
|
:URL: `PyPI.org <https://pypi.org/>`__
|
||||||
|
|
||||||
|
pytest
|
||||||
|
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/pytest-dev/pytest/`__
|
||||||
|
:Package: `https://pypi.org/project/pytest/`__
|
||||||
|
:Documentation: `https://pytest.org/`__
|
||||||
|
|
||||||
|
Sphinx
|
||||||
|
The Sphinx documentation generator.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/sphinx-doc/sphinx/`__
|
||||||
|
:Package: `https://pypi.org/project/sphinx/`__
|
||||||
|
:Documentation: `https://www.sphinx-doc.org/`__
|
||||||
|
|
||||||
|
Test Reporter
|
||||||
|
Displays test results from popular testing frameworks directly in GitHub.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/dorny/test-reporter/`__
|
||||||
|
:Marketplace: `https://github.com/marketplace/actions/test-reporter/`__
|
||||||
|
:README: `https://github.com/dorny/test-reporter/blob/main/README.md`__
|
||||||
|
|
||||||
|
twine
|
||||||
|
Utilities for interacting with PyPI.
|
||||||
|
|
||||||
|
:Source Code: `https://github.com/pypa/twine/`__
|
||||||
|
:Package: `https://pypi.org/project/twine/`__
|
||||||
|
:Documentation: `https://twine.readthedocs.io/`__
|
||||||
@@ -1,4 +1,22 @@
|
|||||||
.. _JOBTMPL/CompletePipeline:
|
.. _JOBTMPL/CompletePipeline:
|
||||||
|
.. index::
|
||||||
|
single: build; CompletePipeline Template
|
||||||
|
single: Bandit; CompletePipeline Template
|
||||||
|
single: CodeCov; CompletePipeline Template
|
||||||
|
single: Codacy; CompletePipeline Template
|
||||||
|
single: Coverage.py; CompletePipeline Template
|
||||||
|
single: docstr_coverage; CompletePipeline Template
|
||||||
|
single: GitHub Pages; CompletePipeline Template
|
||||||
|
single: interrogate; CompletePipeline Template
|
||||||
|
single: MikTeX; CompletePipeline Template
|
||||||
|
single: mypy; CompletePipeline Template
|
||||||
|
single: PyPI; CompletePipeline Template
|
||||||
|
single: pytest; CompletePipeline Template
|
||||||
|
single: pyEDAA.Reports; CompletePipeline Template
|
||||||
|
single: Sphinx; CompletePipeline Template
|
||||||
|
single: Test Reporter; CompletePipeline Template
|
||||||
|
single: twine; CompletePipeline Template
|
||||||
|
single: GitHub Action Reusable Workflow; CompletePipeline Template
|
||||||
|
|
||||||
CompletePipeline
|
CompletePipeline
|
||||||
################
|
################
|
||||||
@@ -16,56 +34,57 @@ It can be used for simple Python packages as well as namespace packages.
|
|||||||
|
|
||||||
.. rubric:: Testing
|
.. rubric:: Testing
|
||||||
|
|
||||||
* Run unit tests.
|
* Run unit tests before packaging using :term:`pytest`.
|
||||||
* Run platform tests.
|
* Run platform tests before packaging using :term:`pytest`.
|
||||||
* Run application tests on target platform.
|
* Run application tests using packaged code on target platform.
|
||||||
|
|
||||||
.. rubric:: Code Quality
|
.. rubric:: Code Quality
|
||||||
|
|
||||||
* Collect code coverage.
|
* Collect code coverage using :term:`Coverage.py`.
|
||||||
* Check documentation coverage.
|
* Check documentation coverage using :term:`docstr_coverage` and :term:`interrogate`.
|
||||||
* Check static typing closure.
|
* Check static typing closure using :term:`mypy`.
|
||||||
|
* Static Application Security Testing (SAST) using :term:`bandit`
|
||||||
|
|
||||||
.. rubric:: Report Handling
|
.. rubric:: Report Handling
|
||||||
|
|
||||||
* Merge unit test results into a single summary report.
|
* Merge unit test results into one report using :term:`pyEDAA.Reports`.
|
||||||
* Merge code coverage results into a single summary report.
|
* Merge code coverage results into one report using :term:`Coverage.py`.
|
||||||
|
|
||||||
.. grid-item::
|
.. grid-item::
|
||||||
:columns: 4
|
:columns: 4
|
||||||
|
|
||||||
.. rubric:: Documentation
|
.. rubric:: Documentation
|
||||||
|
|
||||||
* Compile documentation using Sphinx as HTML and LaTeX.
|
* Compile documentation using :term:`Sphinx` as HTML and LaTeX.
|
||||||
* Translate LaTeX documentation to PDF.
|
* Translate LaTeX documentation to PDF using :term:`MikTeX`.
|
||||||
|
|
||||||
.. rubric:: Publishing Results
|
.. rubric:: Publishing Results
|
||||||
|
|
||||||
* GitHub Pipeline Summary
|
* GitHub Pipeline Summary
|
||||||
|
|
||||||
* Publish unittest results using :gh:`dorny/test-reporter`.
|
* Publish unittest results using :term:`Test Reporter`.
|
||||||
|
|
||||||
* GitHub Pages
|
* :term:`GitHub Pages`
|
||||||
|
|
||||||
* Publish HTML documentation to GitHub Pages.
|
* Publish HTML documentation to GitHub Pages.
|
||||||
|
|
||||||
* Codacy
|
* :term:`Codecov`
|
||||||
|
|
||||||
* Publish code coverage to Codacy.
|
|
||||||
|
|
||||||
* CodeCov
|
|
||||||
|
|
||||||
* Publish code coverage to CodeCov.
|
* Publish code coverage to CodeCov.
|
||||||
* Publish unittest results to CodeCov.
|
* Publish unittest results to CodeCov.
|
||||||
|
|
||||||
|
* :term:`Codacy`
|
||||||
|
|
||||||
|
* Publish code coverage to Codacy.
|
||||||
|
|
||||||
.. grid-item::
|
.. grid-item::
|
||||||
:columns: 4
|
:columns: 4
|
||||||
|
|
||||||
.. rubric:: Packaging
|
.. rubric:: Packaging
|
||||||
|
|
||||||
* Package as wheel.
|
* Package as wheel using :term:`build`.
|
||||||
* Install wheel on target platform.
|
* Install wheel on target platform using pip.
|
||||||
* Upload to PyPI.
|
* Upload to PyPI using :term:`twine`.
|
||||||
|
|
||||||
.. rubric:: Releasing
|
.. rubric:: Releasing
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ Such a all-in-one workflow template covers:
|
|||||||
* pulishing of unit test and code coverage results
|
* pulishing of unit test and code coverage results
|
||||||
* merging of test reports
|
* merging of test reports
|
||||||
* packaging as wheel
|
* packaging as wheel
|
||||||
* publishing wheels tp PyPI
|
* publishing wheels to PyPI
|
||||||
* documentation generation via Sphinx and Miktex
|
* documentation generation via Sphinx and Miktex
|
||||||
* automatic tagging of release commits
|
* automatic tagging of release commits
|
||||||
* releasing
|
* releasing
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/ArtifactCleanup:
|
.. _JOBTMPL/ArtifactCleanup:
|
||||||
|
.. index::
|
||||||
|
single: delete-artifact; ArtifactCleanUp Template
|
||||||
|
single: GitHub Action Reusable Workflow; ArtifactCleanUp Template
|
||||||
|
|
||||||
ArtifactCleanUp
|
ArtifactCleanUp
|
||||||
###############
|
###############
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/IntermediateCleanUp:
|
.. _JOBTMPL/IntermediateCleanUp:
|
||||||
|
.. index::
|
||||||
|
single: delete-artifact; IntermediateCleanUp Template
|
||||||
|
single: GitHub Action Reusable Workflow; IntermediateCleanUp Template
|
||||||
|
|
||||||
IntermediateCleanUp
|
IntermediateCleanUp
|
||||||
###################
|
###################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/LaTeXDocumentation:
|
.. _JOBTMPL/LaTeXDocumentation:
|
||||||
|
.. index::
|
||||||
|
single: MikTeX; LaTeXDocumentation Template
|
||||||
|
single: GitHub Action Reusable Workflow; LaTeXDocumentation Template
|
||||||
|
|
||||||
LaTeXDocumentation
|
LaTeXDocumentation
|
||||||
##################
|
##################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/PublishToGitHubPages:
|
.. _JOBTMPL/PublishToGitHubPages:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Pages; PublishToGitHubPages Template
|
||||||
|
single: GitHub Action Reusable Workflow; PublishToGitHubPages Template
|
||||||
|
|
||||||
PublishToGitHubPages
|
PublishToGitHubPages
|
||||||
####################
|
####################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/SphinxDocumentation:
|
.. _JOBTMPL/SphinxDocumentation:
|
||||||
|
.. index::
|
||||||
|
single: Sphinx; SphinxDocumentation Template
|
||||||
|
single: GitHub Action Reusable Workflow; SphinxDocumentation Template
|
||||||
|
|
||||||
SphinxDocumentation
|
SphinxDocumentation
|
||||||
###################
|
###################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/InstallPackage:
|
.. _JOBTMPL/InstallPackage:
|
||||||
|
.. index::
|
||||||
|
single: pip; InstallPackage Template
|
||||||
|
single: GitHub Action Reusable Workflow; InstallPackage Template
|
||||||
|
|
||||||
InstallPackage (beta)
|
InstallPackage (beta)
|
||||||
#####################
|
#####################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/Package:
|
.. _JOBTMPL/Package:
|
||||||
|
.. index::
|
||||||
|
single: build; Package Template
|
||||||
|
single: GitHub Action Reusable Workflow; Package Template
|
||||||
|
|
||||||
Package
|
Package
|
||||||
#######
|
#######
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
.. _JOBTMPL/PublishOnPyPI:
|
.. _JOBTMPL/PublishOnPyPI:
|
||||||
|
.. index::
|
||||||
|
single: PyPI; PublishOnPyPI Template
|
||||||
|
single: twine; PublishOnPyPI Template
|
||||||
|
single: GitHub Action Reusable Workflow; PublishOnPyPI Template
|
||||||
|
|
||||||
PublishOnPyPI
|
PublishOnPyPI
|
||||||
#############
|
#############
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
.. _JOBTMPL/PublishCoverageResults:
|
.. _JOBTMPL/PublishCoverageResults:
|
||||||
|
.. index::
|
||||||
|
single: CodeCov; PublishCoverageResults Template
|
||||||
|
single: Codacy; PublishCoverageResults Template
|
||||||
|
single: Coverage.py; PublishCoverageResults Template
|
||||||
|
single: GitHub Action Reusable Workflow; PublishCoverageResults Template
|
||||||
|
|
||||||
PublishCoverageResults
|
PublishCoverageResults
|
||||||
######################
|
######################
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
.. _JOBTMPL/PublishTestResults:
|
.. _JOBTMPL/PublishTestResults:
|
||||||
|
.. index::
|
||||||
|
single: CodeCov; PublishTestResults Template
|
||||||
|
single: pyEDAA.Reports; PublishTestResults Template
|
||||||
|
single: Test Reporter; PublishTestResults Template
|
||||||
|
single: GitHub Action Reusable Workflow; PublishTestResults Template
|
||||||
|
|
||||||
PublishTestResults
|
PublishTestResults
|
||||||
##################
|
##################
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
.. _JOBTMPL/CheckDocumentation:
|
.. _JOBTMPL/CheckDocumentation:
|
||||||
|
.. index::
|
||||||
|
single: docstr_coverage; CheckDocumentation Template
|
||||||
|
single: interrogate; CheckDocumentation Template
|
||||||
|
single: GitHub Action Reusable Workflow; CheckDocumentation Template
|
||||||
|
|
||||||
CheckDocumentation
|
CheckDocumentation
|
||||||
##################
|
##################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/StaticTypeCheck:
|
.. _JOBTMPL/StaticTypeCheck:
|
||||||
|
.. index::
|
||||||
|
single: mypy; StaticTypeCheck Template
|
||||||
|
single: GitHub Action Reusable Workflow; StaticTypeCheck Template
|
||||||
|
|
||||||
StaticTypeCheck
|
StaticTypeCheck
|
||||||
###############
|
###############
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/PublishReleaseNotes:
|
.. _JOBTMPL/PublishReleaseNotes:
|
||||||
|
.. index::
|
||||||
|
single: gh; PublishReleaseNotes Template
|
||||||
|
single: GitHub Action Reusable Workflow; PublishReleaseNotes Template
|
||||||
|
|
||||||
PublishReleaseNotes
|
PublishReleaseNotes
|
||||||
###################
|
###################
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
.. _JOBTMPL/TagReleaseCommit:
|
.. _JOBTMPL/TagReleaseCommit:
|
||||||
|
.. index::
|
||||||
|
single: gh; TagReleaseCommit Template
|
||||||
|
single: GitHub Action Reusable Workflow; TagReleaseCommit Template
|
||||||
|
|
||||||
TagReleaseCommit
|
TagReleaseCommit
|
||||||
################
|
################
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _JOBTMPL/ExtractConfiguration:
|
.. _JOBTMPL/ExtractConfiguration:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow; ExtractConfiguration Template
|
||||||
|
|
||||||
ExtractConfiguration
|
ExtractConfiguration
|
||||||
####################
|
####################
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _JOBTMPL/Parameters:
|
.. _JOBTMPL/Parameters:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow; Parameters Template
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
##########
|
##########
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _JOBTMPL/PrepareJob:
|
.. _JOBTMPL/PrepareJob:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow; PrepareJob Template
|
||||||
|
|
||||||
PrepareJob
|
PrepareJob
|
||||||
##########
|
##########
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
.. _JOBTMPL/UnitTesting:
|
.. _JOBTMPL/UnitTesting:
|
||||||
|
.. index::
|
||||||
|
single: pytest; UnitTesting Template
|
||||||
|
single: Coverage.py; UnitTesting Template
|
||||||
|
single: GitHub Action Reusable Workflow; UnitTesting Template
|
||||||
|
|
||||||
UnitTesting
|
UnitTesting
|
||||||
###########
|
###########
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. _JOBTMPL:
|
.. _JOBTMPL:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow
|
||||||
|
|
||||||
Overview
|
Overview
|
||||||
########
|
########
|
||||||
@@ -11,6 +13,8 @@ customizable.
|
|||||||
|
|
||||||
|
|
||||||
.. _JOBTMPL/Instantiation:
|
.. _JOBTMPL/Instantiation:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow; Instantiation
|
||||||
|
|
||||||
Instantiation
|
Instantiation
|
||||||
*************
|
*************
|
||||||
@@ -56,6 +60,8 @@ Some templates might provide output parameters, which can be used in dependent j
|
|||||||
|
|
||||||
|
|
||||||
.. _JOBTMPL/CommonParameters:
|
.. _JOBTMPL/CommonParameters:
|
||||||
|
.. index::
|
||||||
|
single: GitHub Action Reusable Workflow; Common Parameters
|
||||||
|
|
||||||
Common Parameters
|
Common Parameters
|
||||||
*****************
|
*****************
|
||||||
|
|||||||
@@ -220,6 +220,7 @@ extlinks = {
|
|||||||
"ghsrc": (f"https://GitHub.com/{githubNamespace}/{githubProject}/blob/main/%s", None),
|
"ghsrc": (f"https://GitHub.com/{githubNamespace}/{githubProject}/blob/main/%s", None),
|
||||||
"wiki": (f"https://en.wikipedia.org/wiki/%s", None),
|
"wiki": (f"https://en.wikipedia.org/wiki/%s", None),
|
||||||
"pypi": (f"https://pypi.org/project/%s/", "PyPI: %s"),
|
"pypi": (f"https://pypi.org/project/%s/", "PyPI: %s"),
|
||||||
|
"rtd": (f"https://%s.readthedocs.io/", "RTD: %s"),
|
||||||
"ucrt64": (f"https://packages.msys2.org/packages/mingw-w64-ucrt-x86_64-%s", "UCRT64: %s"),
|
"ucrt64": (f"https://packages.msys2.org/packages/mingw-w64-ucrt-x86_64-%s", "UCRT64: %s"),
|
||||||
"dockerhub": (f"https://hub.docker.com/r/%s", "Docker Hub: %s"),
|
"dockerhub": (f"https://hub.docker.com/r/%s", "Docker Hub: %s"),
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -317,4 +317,6 @@ License
|
|||||||
|
|
||||||
License
|
License
|
||||||
Doc-License
|
Doc-License
|
||||||
|
Glossary
|
||||||
|
genindex
|
||||||
TODO
|
TODO
|
||||||
|
|||||||
Reference in New Issue
Block a user