Merge pull request #705 from beeguy74/margin_app-Add-logic-for-Order #5
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: Pylint | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '**/*.py' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '**/*.py' | |
| jobs: | |
| shared: | |
| uses: ./.github/workflows/shared_workflow.yml | |
| with: | |
| python-version: "3.12" | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| pip install pylint | |
| - name: Analysing the code with pylint | |
| run: | | |
| pylint $(git ls-files '*.py') --disable=all --enable=C0114,C0115,C0116,C0301 | |