Skip to content

Commit

Permalink
Added Github workflow to run Black formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie committed Jan 29, 2024
1 parent 79578a2 commit 3151b92
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: Black

on:
push:
branches:
- main
pull_request:

jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose --diff"
src: "./interface-region-imaging-spectrograph"

0 comments on commit 3151b92

Please sign in to comment.