Skip to content

Commit

Permalink
Use black for .py files formatting
Browse files Browse the repository at this point in the history
Signed-off-by: anipaul2 <[email protected]>
  • Loading branch information
anipaul2 committed Jul 28, 2023
1 parent bacac07 commit ee2ddf9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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"

0 comments on commit ee2ddf9

Please sign in to comment.