Skip to content

Renamed all configs in NestedStacks to be consistant, and make ctrl-f… #13

Renamed all configs in NestedStacks to be consistant, and make ctrl-f…

Renamed all configs in NestedStacks to be consistant, and make ctrl-f… #13

Workflow file for this run

name: Pylint
on:
push:
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'
pull_request:
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
env:
PYTHON_VERSION: 3.12
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: ./.github/workflows/composite-setup-python
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')