Bug/container crash loop #97
Workflow file for this run
This file contains 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 - Lint Python Files | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
# Can use 'paths' here. This isn't running on dependabot updates. | |
paths: | |
# Changes to any python file: | |
- '**.py' | |
# Or Actions this workflow depends on (including itself): | |
- '.pylintrc' | |
- '.github/workflows/pylint.yml' | |
- '.github/workflows/composite-setup-python/action.yaml' | |
jobs: | |
python-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: ./.github/workflows/composite-setup-python | |
- name: Analysing the code with pylint | |
run: | | |
make pylint |