Skip to content

Adding Cloudwatch Dashboard to help monitor state of each leaf stack, and debug problems #85

Adding Cloudwatch Dashboard to help monitor state of each leaf stack, and debug problems

Adding Cloudwatch Dashboard to help monitor state of each leaf stack, and debug problems #85

Workflow file for this run

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