Skip to content

Commit

Permalink
Create black.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoadesScholar authored Aug 8, 2024
1 parent b40a221 commit c80162e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Python Black

on: [push, pull_request]

jobs:
lint:
name: Python Lint
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
- name: Setup checkout
uses: actions/checkout@master
- name: Lint with Black
run: |
pip install black
black --diff --check src/cellmap_data tests

0 comments on commit c80162e

Please sign in to comment.