Skip to content

Commit fbc4465

Browse files
committed
Update GitHub action workflow
1 parent d570533 commit fbc4465

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/static-checking.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,19 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Setup Environment
2828
run: ./requirements.sh
29-
- name: CloudFormation Lint
30-
run: cfn-lint -t testing/cloudformation.yaml
29+
- name: CloudFormation Lint - Base
30+
run: cfn-lint -t cloudformation/base.yaml
31+
- name: CloudFormation Lint - Databases
32+
run: cfn-lint -t cloudformation/databases.yaml
3133
- name: Documentation Lint
3234
run: pydocstyle awswrangler/ --add-ignore=D204,D403
3335
- name: mypy check
3436
run: mypy awswrangler
3537
- name: Flake8 Lint
36-
run: flake8 setup.py awswrangler testing/test_awswrangler
38+
run: flake8 setup.py awswrangler tests
3739
- name: Pylint Lint
3840
run: pylint -j 0 awswrangler
3941
- name: Black style
40-
run: black --check --line-length 120 --target-version py36 awswrangler testing/test_awswrangler
42+
run: black --check --line-length 120 --target-version py36 awswrangler tests
4143
- name: Imports order check (isort)
42-
run: isort -rc --check-only awswrangler testing/test_awswrangler
44+
run: isort -rc --check-only awswrangler tests

0 commit comments

Comments
 (0)