From 2dbc82c641eeb82e5a5ad0e456ef0c659fc305be Mon Sep 17 00:00:00 2001 From: Jan Caha Date: Fri, 1 Dec 2023 12:10:41 +0100 Subject: [PATCH] codestyle check --- .github/workflows/codestyle.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/codestyle.yaml diff --git a/.github/workflows/codestyle.yaml b/.github/workflows/codestyle.yaml new file mode 100644 index 0000000..2067c3b --- /dev/null +++ b/.github/workflows/codestyle.yaml @@ -0,0 +1,18 @@ +name: Check code style for plugin + +on: [push, pull_request] + +jobs: + + Check-Code-Style-for-Plugin-Processing-R: + + runs-on: ubuntu-latest + + steps: + + - name: Checkout + uses: actions/checkout@v4 + + - uses: psf/black@stable + with: + options: "--check --verbose"