Skip to content

Commit

Permalink
Merge pull request talaia-labs#233 from anipaul2/issue230
Browse files Browse the repository at this point in the history
Add black check to Python files in CI
  • Loading branch information
sr-gi authored Aug 21, 2023
2 parents 6cbc8df + 092f549 commit 6cc466c
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 6cc466c

Please sign in to comment.