Skip to content

Commit

Permalink
[ci/cd] Python Formatting Check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankush Pala ankush@lastmileai.dev committed Mar 14, 2024
1 parent 0a53ad6 commit eba83e5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check_formatting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check Python Formatting

on: [pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --line-length=79" # In line with .vscode/settings.json

0 comments on commit eba83e5

Please sign in to comment.