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"