Skip to content

Commit cf7a987

Browse files
committed
Activated bandit and pylint. [skip ci]
1 parent fc08112 commit cf7a987

3 files changed

Lines changed: 18 additions & 11 deletions

File tree

.github/workflows/_Checking_JobTemplates.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ jobs:
8888
with:
8989
python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
9090
package_directory: ${{ needs.UnitTestingParams.outputs.package_directory }}
91-
artifact: CodeQuality
91+
bandit: 'true'
92+
pylint: 'true'
93+
artifact: 'CodeQuality'
9294

9395
DocCoverage:
9496
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev

.github/workflows/_Checking_NamespacePackage_Pipeline.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ jobs:
88
NamespacePackage:
99
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
1010
with:
11-
package_namespace: myFramework
12-
package_name: Extension
13-
codecov: true
14-
codacy: true
15-
dorny: true
11+
package_namespace: 'myFramework'
12+
package_name: 'Extension'
13+
bandit: 'true'
14+
pylint: 'true'
15+
codecov: 'true'
16+
codacy: 'true'
17+
dorny: 'true'
18+
cleanup: 'false'
1619
secrets:
1720
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1821
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/_Checking_SimplePackage_Pipeline.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ jobs:
88
SimplePackage:
99
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
1010
with:
11-
package_name: myPackage
12-
codecov: true
13-
codacy: true
14-
dorny: true
15-
cleanup: false
11+
package_name: 'myPackage'
12+
bandit: 'true'
13+
pylint: 'true'
14+
codecov: 'true'
15+
codacy: 'true'
16+
dorny: 'true'
17+
cleanup: 'false'
1618
secrets:
1719
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1820
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)