Skip to content

Commit

Permalink
ci: Run format check on push and pull requests
Browse files Browse the repository at this point in the history
using `black` as the formatter
  • Loading branch information
GeckoEidechse committed Aug 10, 2024
1 parent 35616ca commit f4ff525
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Format check
on: [push, pull_request]


jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/black-check@master

0 comments on commit f4ff525

Please sign in to comment.