Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 713f5e5

Browse files
fix ymls
1 parent 04c0b12 commit 713f5e5

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/pylint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232
architecture: x64
3333
cache: 'pip'
34-
- run: |
34+
- name: Install dependencies
35+
run: |
3536
python -m pip install --upgrade pip
3637
pip install pylint
3738
- name: Analysing the code with pylint
38-
- run: pylint app.py lambda_app tests
39+
- run: pylint ./examples/*/app.py ./examples/*/*

examples/lambda_api/.github/workflows/pylint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232
architecture: x64
3333
cache: 'pip'
34-
- run: |
34+
- name: Install dependencies
35+
run: |
3536
python -m pip install --upgrade pip
3637
pip install pylint
3738
- name: Analysing the code with pylint
38-
- run: pylint app.py lambda_app tests
39+
run: pylint app.py lambda_app tests

examples/lambda_sqs/.github/workflows/pylint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232
architecture: x64
3333
cache: 'pip'
34-
- run: |
34+
- name: Install dependencies
35+
run: |
3536
python -m pip install --upgrade pip
3637
pip install pylint
3738
- name: Analysing the code with pylint
38-
- run: pylint app.py lambda_app tests
39+
run: pylint app.py lambda_app tests

0 commit comments

Comments
 (0)