-
Notifications
You must be signed in to change notification settings - Fork 388
39 lines (32 loc) · 1.17 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Lint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Lint with flake8
run: |
pip install flake8
flake8 ./aws/logs_monitoring/ --count --select=E9,F --show-source --statistics --exclude=*_pb2.py
flake8 ./aws/rds_enhanced_monitoring/ --count --select=E9,F --show-source --statistics
- name: Check formatting with Black
run: |
pip install black
black --check --diff --exclude pb2.py ./aws/logs_monitoring
black --check --diff ./aws/rds_enhanced_monitoring
- name: Setup CloudFormation Linter with Latest Version
uses: scottbrenner/cfn-lint-action@v2
- name: Print the CloudFormation Linter Version & run Linter
run: |
cfn-lint --version
cfn-lint -t aws/logs_monitoring/template.yaml
cfn-lint -t aws/rds_enhanced_monitoring/rds-enhanced-sam-template.yaml