Fix submodule detection, the CleanupArtifacts NameError and the skipp… #699
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Verification of Pipeline Templates (Namespace Package) | |
| run-name: ${{ github.ref_type == 'tag' && github.ref_name || '' }} | |
| on: | |
| push: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/') }} # tag pushes can publish a release, so never cancel those | |
| jobs: | |
| NamespacePackage: | |
| uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev | |
| with: | |
| package_namespace: 'myFramework' | |
| package_name: 'Extension' | |
| unittest_python_version_list: '3.11' # SimplePackage covers Python 3.14, so both pipelines together still test the version range's ends. | |
| unittest_system_list: 'ubuntu ubuntu-arm' | |
| bandit: 'true' | |
| pylint: 'true' | |
| codecov: 'true' | |
| codacy: 'true' | |
| dorny: 'true' | |
| documentation_steps: 'html latex pdf' | |
| auto_tag: 'false' | |
| secrets: | |
| PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| CODACY_TOKEN: ${{ secrets.CODACY_TOKEN }} |