diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b1b91fe4..5a90464c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -46,4 +46,15 @@ jobs: cargo fmt --verbose --check -- --color always - name: Run clippy run: | - cargo clippy --all-features --all-targets --color always -- --deny warnings \ No newline at end of file + cargo clippy --all-features --all-targets --color always -- --deny warnings + + python-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v3 + - name: Run black + uses: psf/black@stable + with: + src: "./watchtower-plugin/tests" + options: "--check -l 120" \ No newline at end of file