Skip to content

Commit

Permalink
Add black-format checking to CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaya-mankad committed May 1, 2024
1 parent 4d8eded commit 45cac29
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check-black.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Check Black formatting

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose --line-length=120"
src: "./pytheneum"
version: "~= 24.0"

0 comments on commit 45cac29

Please sign in to comment.