From babe0456986c0f9cab3c9416f34536d6c398e580 Mon Sep 17 00:00:00 2001 From: Vitaly Gavensky Date: Wed, 15 May 2024 09:56:49 +0300 Subject: [PATCH] 3897880:PDR black list tests (initial steps) --- .github/workflows/pdr_plugin_ci_workflow.yml | 24 ++++++++++++++++++++ plugins/requirements.txt | 0 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/pdr_plugin_ci_workflow.yml create mode 100644 plugins/requirements.txt diff --git a/.github/workflows/pdr_plugin_ci_workflow.yml b/.github/workflows/pdr_plugin_ci_workflow.yml new file mode 100644 index 000000000..fded0b46f --- /dev/null +++ b/.github/workflows/pdr_plugin_ci_workflow.yml @@ -0,0 +1,24 @@ +name: PDR Plugin CI Workflow + +on: + push: + paths: + - 'plugins/pdr_deterministic_plugin/**' +jobs: + pylint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@main + + - name: Set up Python + uses: actions/setup-python@main + with: + python-version: 3.9 + + - name: Install dependencies + run: | + pip install -r plugins/pdr_deterministic_plugin/requirements.txt + pip install pylint + - name: Run PyLint + run: pylint --rcfile=plugins/pdr_deterministic_plugin/.pylintrc plugins/pdr_deterministic_plugin \ No newline at end of file diff --git a/plugins/requirements.txt b/plugins/requirements.txt new file mode 100644 index 000000000..e69de29bb