Skip to content

Commit

Permalink
3897880:PDR black list tests (initial steps)
Browse files Browse the repository at this point in the history
  • Loading branch information
vg12345 committed May 15, 2024
1 parent 40f0118 commit babe045
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pdr_plugin_ci_workflow.yml
Original file line number Diff line number Diff line change
@@ -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
Empty file added plugins/requirements.txt
Empty file.

0 comments on commit babe045

Please sign in to comment.