Skip to content

tests: bump ducktape to latest of 0.11.x #4126

tests: bump ducktape to latest of 0.11.x

tests: bump ducktape to latest of 0.11.x #4126

Workflow file for this run

---
name: Lint python
on:
push:
branches: [dev]
paths:
- '**.py'
- '.github/workflows/lint-python.yml'
tags-ignore:
- '**'
pull_request:
paths:
- '**.py'
- '.github/workflows/lint-python.yml'
jobs:
py:
name: Lint python files
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install yapf
run: pip install yapf==0.40.1
- name: Run yapf
run: find . -type f -name '*.py' | xargs -n8 yapf -d