Kotlin updated file with 12.1.1 #464
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Python | |
on: | |
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[@]}" |