From b358058a7b39bdc5235561adc558542dd81fc5a6 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Fri, 25 Aug 2023 18:41:06 -0400 Subject: [PATCH] add black linter GitHub action workflow --- .github/workflows/black.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/black.yaml diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml new file mode 100644 index 00000000..8e1278e3 --- /dev/null +++ b/.github/workflows/black.yaml @@ -0,0 +1,10 @@ +name: Lint (black) + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: psf/black@stable \ No newline at end of file