Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

S3TM examples for Swift #3618

S3TM examples for Swift

S3TM examples for Swift #3618

Workflow file for this run

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@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@e9772d140489982e0e3704fea5ee93d536f1e275
with:
files: "**.py"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install black==23.9.1 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[@]}"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.