Update trigger #7
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: Code Analysis | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| code-analysis: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: python:3.13 | |
| steps: | |
| - name: Checkout the Repository to Runner | |
| uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: pip install -r requirements.txt --upgrade | |
| - name: Analysis pylint | |
| run: | | |
| pylint helpers tests conftest.py --reports=y --recursive=y --output-format=colorized --fail-on=E --fail-under=7 | |
| - name: Analysis bandit | |
| if: always() | |
| run: | | |
| bandit -r helpers tests conftest.py | |