Changed documentation to @r6.

This commit is contained in:
Patrick Lehmann
2025-09-24 09:53:51 +02:00
parent 53a32fbf35
commit c0547188f9
21 changed files with 148 additions and 148 deletions

View File

@@ -42,7 +42,7 @@ to handover input parameters to the template.
jobs: jobs:
<InstanceName>: <InstanceName>:
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r5 uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r6
with: with:
<Param1>: <Value> <Param1>: <Value>
@@ -66,12 +66,12 @@ Documentation Only (Sphinx)
jobs: jobs:
BuildTheDocs: BuildTheDocs:
uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@r5 uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@r6
with: with:
artifact: Documentation artifact: Documentation
PublishToGitHubPages: PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
needs: needs:
- BuildTheDocs - BuildTheDocs
with: with:

View File

@@ -289,7 +289,7 @@ Instantiation
************* *************
The following instantiation example creates a ``SimplePackage`` job derived from job template ``CompletePipeline`` The following instantiation example creates a ``SimplePackage`` job derived from job template ``CompletePipeline``
version ``@r5``. It only requires the `package_name` parameter to run a full pipeline suitable for a Python project. version ``@r6``. It only requires the `package_name` parameter to run a full pipeline suitable for a Python project.
.. grid:: 2 .. grid:: 2
@@ -307,7 +307,7 @@ version ``@r5``. It only requires the `package_name` parameter to run a full pip
jobs: jobs:
SimplePackage: SimplePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_name: myPackage package_name: myPackage
@@ -321,7 +321,7 @@ version ``@r5``. It only requires the `package_name` parameter to run a full pip
jobs: jobs:
NamespacePackage: NamespacePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -457,7 +457,7 @@ package_namespace
jobs: jobs:
NamespacePackage: NamespacePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -505,7 +505,7 @@ package_name
jobs: jobs:
SimplePackage: SimplePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_name: myPackage package_name: myPackage

View File

@@ -41,7 +41,7 @@ The simplest variant just uses the artifact name for the package.
jobs: jobs:
ArtifactCleanUp: ArtifactCleanUp:
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r5 uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r6
with: with:
package: Package package: Package
@@ -53,7 +53,7 @@ Complex Example
jobs: jobs:
ArtifactCleanUp: ArtifactCleanUp:
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r5 uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r6
needs: needs:
- Params - Params
- UnitTesting - UnitTesting

View File

@@ -33,14 +33,14 @@ variant after test results have been merged into a single file.
Instantiation Instantiation
************* *************
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r5``. It only The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r6``. It only
requires a `name` parameter to create the artifact names. requires a `name` parameter to create the artifact names.
.. code-block:: yaml .. code-block:: yaml
jobs: jobs:
IntermediateCleanUp: IntermediateCleanUp:
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r5 uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r6
needs: needs:
- UnitTestingParams - UnitTestingParams
- PublishCoverageResults - PublishCoverageResults

View File

@@ -46,12 +46,12 @@ Instantiation
jobs: jobs:
UnitTestingParams: UnitTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
Documentation: Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
needs: needs:
- UnitTestingParams - UnitTestingParams
with: with:
@@ -60,7 +60,7 @@ Instantiation
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }} latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
PDFDocumentation: PDFDocumentation:
uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r6
needs: needs:
- UnitTestingParams - UnitTestingParams
- Documentation - Documentation

View File

@@ -51,7 +51,7 @@ Instantiation
# ... # ...
PublishToGitHubPages: PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
needs: needs:
- BuildTheDocs - BuildTheDocs
with: with:
@@ -66,7 +66,7 @@ Instantiation
jobs: jobs:
PublishToGitHubPages: PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r6
needs: needs:
- Params - Params
- BuildTheDocs - BuildTheDocs

View File

@@ -72,12 +72,12 @@ Instantiation
jobs: jobs:
UnitTestingParams: UnitTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
Documentation: Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
needs: needs:
- UnitTestingParams - UnitTestingParams
with: with:
@@ -199,7 +199,7 @@ coverage_report_json
:Possible Values: Any valid JSON string containing a JSON object with fields: :Possible Values: Any valid JSON string containing a JSON object with fields:
:directory: Directory or sub-directory where the code coverage JSON report will be extracted from :directory: Directory or sub-directory where the code coverage JSON report will be extracted from
:ref:`artifact <JOBTMPL/SphinxDocumentation/Input/coverage_json_artifact>`. :ref:`artifact <JOBTMPL/SphinxDocumentation/Input/coverage_json_artifact>`.
:Description: Directory as JSON object where the code coverage JSON report will be extracted. |br| :Description: Directory as JSON object where the code coverage JSON report will be extracted. |br|
This path is configured in :file:`pyproject.toml` and can be extracted by This path is configured in :file:`pyproject.toml` and can be extracted by
:ref:`JOBTMPL/ExtractConfiguration`. :ref:`JOBTMPL/ExtractConfiguration`.
@@ -207,10 +207,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
Documentation: Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -245,7 +245,7 @@ unittest_xml
:Possible Values: Any valid JSON string containing a JSON object with fields: :Possible Values: Any valid JSON string containing a JSON object with fields:
:directory: Directory or sub-directory where the unittest JUnit XML report will be extracted from :directory: Directory or sub-directory where the unittest JUnit XML report will be extracted from
:ref:`artifact <JOBTMPL/SphinxDocumentation/Input/unittest_xml_artifact>`. :ref:`artifact <JOBTMPL/SphinxDocumentation/Input/unittest_xml_artifact>`.
:Description: Directory as JSON object where the unittest JUnit XML report will be extracted. |br| :Description: Directory as JSON object where the unittest JUnit XML report will be extracted. |br|
This path is configured in :file:`pyproject.toml` and can be extracted by This path is configured in :file:`pyproject.toml` and can be extracted by
:ref:`JOBTMPL/ExtractConfiguration`. :ref:`JOBTMPL/ExtractConfiguration`.
@@ -253,10 +253,10 @@ unittest_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
Documentation: Documentation:
uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -58,7 +58,7 @@ Simple Example
jobs: jobs:
Package: Package:
uses: pyTooling/Actions/.github/workflows/Package.yml@r5 uses: pyTooling/Actions/.github/workflows/Package.yml@r6
with: with:
artifact: Package artifact: Package
@@ -70,7 +70,7 @@ Complex Example
jobs: jobs:
Package: Package:
uses: pyTooling/Actions/.github/workflows/Package.yml@r5 uses: pyTooling/Actions/.github/workflows/Package.yml@r6
needs: needs:
- Params - Params
with: with:

View File

@@ -63,7 +63,7 @@ by a Git tag. A secret is forwarded from GitHub secrets to a job secret.
# ... # ...
PublishOnPyPI: PublishOnPyPI:
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r6
if: startsWith(github.ref, 'refs/tags') if: startsWith(github.ref, 'refs/tags')
with: with:
artifact: Package artifact: Package
@@ -87,7 +87,7 @@ by that job. Finally, the list of requirements is overwritten to load a list of
# ... # ...
PublishOnPyPI: PublishOnPyPI:
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r6
if: startsWith(github.ref, 'refs/tags') if: startsWith(github.ref, 'refs/tags')
needs: needs:
- Params - Params

View File

@@ -77,17 +77,17 @@ The following
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
with: with:
package_name: myPackage package_name: myPackage
UnitTestingParams: UnitTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
- UnitTestingParams - UnitTestingParams
@@ -96,7 +96,7 @@ The following
coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }} coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}
PublishCoverageResults: PublishCoverageResults:
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
needs: needs:
- ConfigParams - ConfigParams
- UnitTestingParams - UnitTestingParams
@@ -253,10 +253,10 @@ coverage_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
PublishCoverageResults: PublishCoverageResults:
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -293,10 +293,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
PublishCoverageResults: PublishCoverageResults:
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -326,10 +326,10 @@ coverage_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
PublishCoverageResults: PublishCoverageResults:
uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -85,7 +85,7 @@ Simple Example
jobs: jobs:
PublishTestResults: PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
Complex Example Complex Example
=============== ===============
@@ -100,7 +100,7 @@ Complex Example
# ... # ...
PublishTestResults: PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r6
needs: needs:
- CodeCoverage - CodeCoverage
- UnitTesting - UnitTesting

View File

@@ -41,19 +41,19 @@ The ``CheckDocumentation`` job checks the level of documentation coverage for Py
Instantiation Instantiation
************* *************
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r5``. It only The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version ``@r6``. It only
requires a `name` parameter to create the artifact names. requires a `name` parameter to create the artifact names.
.. code-block:: yaml .. code-block:: yaml
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
with: with:
package_name: myPackage package_name: myPackage
DocCoverage: DocCoverage:
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r5 uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -59,7 +59,7 @@ directory ``report/typing``.
jobs: jobs:
StaticTypeCheck: StaticTypeCheck:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r5 uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
with: with:
cobertura_artifact: 'TypeChecking-Cobertura' cobertura_artifact: 'TypeChecking-Cobertura'
junit_artifact: 'TypeChecking-JUnit' junit_artifact: 'TypeChecking-JUnit'
@@ -91,17 +91,17 @@ precompute the artifact's name.
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
with: with:
package_name: myPackage package_name: myPackage
Params: Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
StaticTypeCheck: StaticTypeCheck:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r5 uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
needs: needs:
- ConfigParams - ConfigParams
- Params - Params
@@ -221,10 +221,10 @@ cobertura_report
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r5 uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -261,10 +261,10 @@ junit_report
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r5 uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -294,10 +294,10 @@ html_report
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r5 uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -64,10 +64,10 @@ Instantiation
jobs: jobs:
Prepare: Prepare:
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r5 uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
Release: Release:
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
needs: needs:
- Prepare - Prepare
if: needs.Prepare.outputs.is_release_tag == 'true' if: needs.Prepare.outputs.is_release_tag == 'true'
@@ -441,7 +441,7 @@ replacements
.. code-block:: yaml .. code-block:: yaml
ReleasePage: ReleasePage:
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
needs: needs:
- Prepare - Prepare
if: needs.Prepare.outputs.is_release_tag == 'true' if: needs.Prepare.outputs.is_release_tag == 'true'

View File

@@ -47,21 +47,21 @@ Instantiation
************* *************
The following instantiation example depicts three jobs within a bigger pipeline. The ``prepare`` job derived from job The following instantiation example depicts three jobs within a bigger pipeline. The ``prepare`` job derived from job
template ``PrepareJob`` version ``@r5`` figures out if a pipeline runs for a release merge-commit, for a tag or any template ``PrepareJob`` version ``@r6`` figures out if a pipeline runs for a release merge-commit, for a tag or any
other reason. Its outputs are used to either run a ``TriggerTaggedRelease`` job derived from job template other reason. Its outputs are used to either run a ``TriggerTaggedRelease`` job derived from job template
``TagReleaseCommit`` version ``@r5``, or alternatively run the ``ReleasePage`` job derived from job template ``TagReleaseCommit`` version ``@r6``, or alternatively run the ``ReleasePage`` job derived from job template
``PublishReleaseNotes`` version ``@r5``. ``PublishReleaseNotes`` version ``@r6``.
.. code-block:: yaml .. code-block:: yaml
jobs: jobs:
Prepare: Prepare:
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r5 uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
# Other pipeline jobs # Other pipeline jobs
TriggerTaggedRelease: TriggerTaggedRelease:
uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r5 uses: pyTooling/Actions/.github/workflows/TagReleaseCommit.yml@r6
needs: needs:
- Prepare - Prepare
if: needs.Prepare.outputs.is_release_commit == 'true' && github.event_name != 'schedule' if: needs.Prepare.outputs.is_release_commit == 'true' && github.event_name != 'schedule'
@@ -74,7 +74,7 @@ other reason. Its outputs are used to either run a ``TriggerTaggedRelease`` job
secrets: inherit secrets: inherit
ReleasePage: ReleasePage:
uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r5 uses: pyTooling/Actions/.github/workflows/PublishReleaseNotes.yml@r6
needs: needs:
- Prepare - Prepare
if: needs.Prepare.outputs.is_release_tag == 'true' if: needs.Prepare.outputs.is_release_tag == 'true'

View File

@@ -58,17 +58,17 @@ Instantiation
************* *************
The following instantiation example creates a ``ConfigParams`` job derived from job template ``ExtractConfiguration`` The following instantiation example creates a ``ConfigParams`` job derived from job template ``ExtractConfiguration``
version ``@r5``. It requires no special parameters to extract unit test (pytest) and code coverage (Coverage.py) version ``@r6``. It requires no special parameters to extract unit test (pytest) and code coverage (Coverage.py)
settings. settings.
.. code-block:: yaml .. code-block:: yaml
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -250,10 +250,10 @@ unittest_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -265,10 +265,10 @@ unittest_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -283,10 +283,10 @@ unittest_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -333,10 +333,10 @@ unittest_merged_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -348,10 +348,10 @@ unittest_merged_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -366,10 +366,10 @@ unittest_merged_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -414,10 +414,10 @@ coverage_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -429,10 +429,10 @@ coverage_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -447,10 +447,10 @@ coverage_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -497,10 +497,10 @@ coverage_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -512,10 +512,10 @@ coverage_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -530,10 +530,10 @@ coverage_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -580,10 +580,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -595,10 +595,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -613,10 +613,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -663,10 +663,10 @@ typing_report_cobertura
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -678,10 +678,10 @@ typing_report_cobertura
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -696,10 +696,10 @@ typing_report_cobertura
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -746,10 +746,10 @@ typing_report_junit
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -761,10 +761,10 @@ typing_report_junit
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -779,10 +779,10 @@ typing_report_junit
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -826,10 +826,10 @@ typing_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -841,10 +841,10 @@ typing_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -859,10 +859,10 @@ typing_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
OtherJob: OtherJob:
uses: some/path/to/a/template@r5 uses: some/path/to/a/template@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -53,7 +53,7 @@ Simple Example
:columns: 5 :columns: 5
The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version The following instantiation example creates a ``Params`` job derived from job template ``Parameters`` version
``@r5``. It only requires a :ref:`JOBTMPL/Parameters/Input/package_name` parameter to create the artifact names. ``@r6``. It only requires a :ref:`JOBTMPL/Parameters/Input/package_name` parameter to create the artifact names.
.. grid-item:: .. grid-item::
:columns: 7 :columns: 7
@@ -62,12 +62,12 @@ Simple Example
jobs: jobs:
Params: Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- Params - Params
with: with:
@@ -101,7 +101,7 @@ Complex Example
jobs: jobs:
UnitTestingParams: UnitTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -111,7 +111,7 @@ Complex Example
exclude_list: 'windows:pypy-3.10 windows:pypy-3.11' exclude_list: 'windows:pypy-3.10 windows:pypy-3.11'
PerformanceTestingParams: PerformanceTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -119,7 +119,7 @@ Complex Example
system_list: 'ubuntu windows macos macos-arm' system_list: 'ubuntu windows macos macos-arm'
PlatformTestingParams: PlatformTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -272,7 +272,7 @@ package_namespace
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension
@@ -321,7 +321,7 @@ package_name
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
@@ -404,7 +404,7 @@ include_list
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
include_list: "ubuntu:3.11 macos:3.11" include_list: "ubuntu:3.11 macos:3.11"
@@ -426,7 +426,7 @@ exclude_list
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
exclude_list: "windows:pypy-3.8 windows:pypy-3.9" exclude_list: "windows:pypy-3.8 windows:pypy-3.9"
@@ -449,7 +449,7 @@ disable_list
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
disable_list: "windows:3.10 windows:3.11" disable_list: "windows:3.10 windows:3.11"
@@ -577,12 +577,12 @@ python_version
jobs: jobs:
Params: Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
name: pyTooling name: pyTooling
CodeCoverage: CodeCoverage:
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r5 uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r6
needs: needs:
- Params - Params
with: with:
@@ -658,12 +658,12 @@ artifact_names
jobs: jobs:
Params: Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
name: pyTooling name: pyTooling
Coverage: Coverage:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- Params - Params
with: with:
@@ -692,12 +692,12 @@ python_jobs
jobs: jobs:
Params: Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
name: pyDummy name: pyDummy
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- Params - Params
with: with:

View File

@@ -64,7 +64,7 @@ The job template generates various output parameters derived from
Instantiation Instantiation
************* *************
The following instantiation example creates a ``Prepare`` job derived from job template ``PrepareJob`` version ``@r5``. The following instantiation example creates a ``Prepare`` job derived from job template ``PrepareJob`` version ``@r6``.
In a default usecase, no input parameters need to be specified for the job template assuming a main-branch and In a default usecase, no input parameters need to be specified for the job template assuming a main-branch and
release-branch called ``main``, a development-branch called ``dev``, as well as semantic versioning for tags and release-branch called ``main``, a development-branch called ``dev``, as well as semantic versioning for tags and
pull-request titles. pull-request titles.
@@ -73,7 +73,7 @@ pull-request titles.
jobs: jobs:
Prepare: Prepare:
uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r5 uses: pyTooling/Actions/.github/workflows/PrepareJob.yml@r6
<ReleaseJob>: <ReleaseJob>:
needs: needs:

View File

@@ -71,7 +71,7 @@ Instantiation
************* *************
The following instantiation example creates a ``UnitTesting`` job derived from job template ``UnitTesting`` version The following instantiation example creates a ``UnitTesting`` job derived from job template ``UnitTesting`` version
`@r5`. For providing the job matrix as a JSON string, the :ref:`JOBTMPL/Parameters` job template is used. Additionally, `@r6`. For providing the job matrix as a JSON string, the :ref:`JOBTMPL/Parameters` job template is used. Additionally,
the job needs configuration settings, which are stored in :file:`pyproject.toml`. Instead of duplicating these settings, the job needs configuration settings, which are stored in :file:`pyproject.toml`. Instead of duplicating these settings,
the :ref:`JOBTMPL/ExtractConfiguration` job template is used to extract these settings. the :ref:`JOBTMPL/ExtractConfiguration` job template is used to extract these settings.
@@ -79,15 +79,15 @@ the :ref:`JOBTMPL/ExtractConfiguration` job template is used to extract these se
jobs: jobs:
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTestingParams: UnitTestingParams:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r5 uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
with: with:
package_name: myPackage package_name: myPackage
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
- UnitTestingParams - UnitTestingParams
@@ -513,10 +513,10 @@ unittest_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -564,10 +564,10 @@ coverage_report_xml
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -604,10 +604,10 @@ coverage_report_json
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:
@@ -637,10 +637,10 @@ coverage_report_html
.. code-block:: yaml .. code-block:: yaml
ConfigParams: ConfigParams:
uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r5 uses: pyTooling/Actions/.github/workflows/ExtractConfiguration.yml@r6
UnitTesting: UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r5 uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6
needs: needs:
- ConfigParams - ConfigParams
with: with:

View File

@@ -45,7 +45,7 @@ Some templates might provide output parameters, which can be used in dependent j
jobs: jobs:
<InstanceName>: <InstanceName>:
uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r5 uses: <GitHubOrganization>/<Repository>/.github/workflows/<Template>.yml@r6
with: with:
<Param1>: <Value1> <Param1>: <Value1>
<Param2>: <Value2> <Param2>: <Value2>

View File

@@ -121,7 +121,7 @@ Example Pipelines
jobs: jobs:
SimplePackage: SimplePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_name: myPackage package_name: myPackage
codecov: true codecov: true
@@ -147,7 +147,7 @@ Example Pipelines
jobs: jobs:
NamespacePackage: NamespacePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r5 uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
with: with:
package_namespace: myFramework package_namespace: myFramework
package_name: Extension package_name: Extension