From 8a536e595c6ca002249ffed2e29020f8fc960281 Mon Sep 17 00:00:00 2001 From: Ferenc Hechler Date: Wed, 12 Jun 2024 17:14:12 +0200 Subject: [PATCH] lint python code. --- .github/workflows/lint-python-code.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/lint-python-code.yml diff --git a/.github/workflows/lint-python-code.yml b/.github/workflows/lint-python-code.yml new file mode 100644 index 00000000..9040d9fc --- /dev/null +++ b/.github/workflows/lint-python-code.yml @@ -0,0 +1,15 @@ +name: Check that PRs do not contain prereleaseSuffixes +on: + pull_request: + branches: + # TODO[FH]: remove before PR is merged. + - testmain + - master +jobs: + lint-python-code: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: psf/black@stable + with: + src: "./source/operators/secretsmanagementOperator-hc"