Skip to content

Commit

Permalink
Merge pull request #59 from jdebacker/black_test
Browse files Browse the repository at this point in the history
GH action to test for proper formatting
  • Loading branch information
jdebacker authored Feb 17, 2024
2 parents a891a37 + 7f618d9 commit 647bdbb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check_formatting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

name: Check Black formatting

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
options: "-l 79 --check"
src: "."

0 comments on commit 647bdbb

Please sign in to comment.