Skip to content

Commit

Permalink
add ruff to CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouy committed Jun 23, 2024
1 parent ba4358e commit fbeb942
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Black"
name: "Ruff/Black"

on:
push:
Expand All @@ -19,6 +19,12 @@ jobs:
uses: actions/checkout@v4

- name: Code formatting
uses: chartboost/ruff-action@v1
with:
args: "check --preview"

- name: Notebook formatting
uses: psf/black@stable
with:
src: "docs/notebooks/"
jupyter: true

0 comments on commit fbeb942

Please sign in to comment.