Activated bandit and pylint. [skip ci]

This commit is contained in:
Patrick Lehmann
2025-10-05 15:37:39 +02:00
parent fc08112235
commit cf7a98730e
3 changed files with 18 additions and 11 deletions

View File

@@ -88,7 +88,9 @@ jobs:
with: with:
python_version: ${{ needs.UnitTestingParams.outputs.python_version }} python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
package_directory: ${{ needs.UnitTestingParams.outputs.package_directory }} package_directory: ${{ needs.UnitTestingParams.outputs.package_directory }}
artifact: CodeQuality bandit: 'true'
pylint: 'true'
artifact: 'CodeQuality'
DocCoverage: DocCoverage:
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev

View File

@@ -8,11 +8,14 @@ jobs:
NamespacePackage: NamespacePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
with: with:
package_namespace: myFramework package_namespace: 'myFramework'
package_name: Extension package_name: 'Extension'
codecov: true bandit: 'true'
codacy: true pylint: 'true'
dorny: true codecov: 'true'
codacy: 'true'
dorny: 'true'
cleanup: 'false'
secrets: secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

View File

@@ -8,11 +8,13 @@ jobs:
SimplePackage: SimplePackage:
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
with: with:
package_name: myPackage package_name: 'myPackage'
codecov: true bandit: 'true'
codacy: true pylint: 'true'
dorny: true codecov: 'true'
cleanup: false codacy: 'true'
dorny: 'true'
cleanup: 'false'
secrets: secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}