Fixed test failing in vscode due to deletion of path #1397
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: Run pylint | |
on: [push, pull_request] | |
jobs: | |
pylint: | |
name: Build pylint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
pip install pylint | |
- name: Run pylint | |
run: | | |
pylint daliuge-common daliuge-translator daliuge-engine --fail-under=9 --fail-on=E |