From 228295d6ef6a73ae75e3fd725f8037bb31801981 Mon Sep 17 00:00:00 2001 From: Vshivkov Vladimir Date: Wed, 12 Jun 2024 13:40:50 +0200 Subject: [PATCH] add python lint --- .github/workflows/python-lint.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/python-lint.yaml diff --git a/.github/workflows/python-lint.yaml b/.github/workflows/python-lint.yaml new file mode 100644 index 0000000..52dbf19 --- /dev/null +++ b/.github/workflows/python-lint.yaml @@ -0,0 +1,11 @@ +jobs: + lint: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.7, 3.8, 3.9, 3.10, 3.11] + steps: + - use: advanced-security/python-lint-code-scanning-action@v1 + with: + linter: flake8 + python-version: ${{ matrix.python-version }}