From 26a6fe5ef7e8f17c113fc222073e75042015d560 Mon Sep 17 00:00:00 2001 From: Andreas Bauer Date: Wed, 3 Jul 2024 11:41:13 +0200 Subject: [PATCH] Add black linting to CI workflow --- .github/workflows/linter.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 5144018..2935705 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -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