mirror of
https://github.com/awsdocs/aws-doc-sdk-examples.git
synced 2026-03-26 06:22:18 +00:00
37 lines
905 B
YAML
37 lines
905 B
YAML
name: Lint Python
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
black:
|
|
name: Flake8 Linting & Black Formatting
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v41
|
|
with:
|
|
files: "**.py"
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install black pylint
|
|
|
|
- name: Run Black & Pylint
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
run: |
|
|
changed_files=(${{steps.changed-files.outputs.all_changed_files}})
|
|
black "${changed_files[@]}"
|
|
pylint --rcfile .github/linters/.python-lint "${changed_files[@]}"
|