update README #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ufm log analyzer CI Workflow | |
on: | |
push: | |
paths: | |
- 'plugins/ufm_log_analyzer_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 # Specify the Python version you want to use | |
- name: Install dependencies | |
run: | | |
pip install -r plugins/ufm_log_analyzer_plugin/src/loganalyze/requirements.txt | |
pip install pylint | |
- name: Run PyLint | |
run: pylint --rcfile=plugins/ufm_log_analyzer_plugin/src/loganalyze/.pylintrc plugins/ufm_log_analyzer_plugin/src/loganalyze |