Skip to content

Commit

Permalink
Add black linting to CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-bauer committed Jul 3, 2024
1 parent 1a1c55c commit 26a6fe5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Ruff linter
on: [ push, pull_request ]
name: Linter
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable

0 comments on commit 26a6fe5

Please sign in to comment.