From aaea7eb3eb2862ae638113c19f3d3daef476055e Mon Sep 17 00:00:00 2001 From: Mike Pontillo Date: Tue, 16 Apr 2024 08:27:23 -0700 Subject: [PATCH] GHA: add lint checker for 'black' code format --- .github/workflows/black.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/black.yml diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000..9065b5e --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,10 @@ +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: psf/black@stable