File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments