Skip to content

Commit

Permalink
Moved pylint install lines out of compliance workflow
Browse files Browse the repository at this point in the history
Moved to a dedicated requirements_pylint.txt file used by the worflow
  • Loading branch information
pfayolle committed Nov 8, 2023
1 parent 968ffce commit e83a796
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ jobs:
- name: Install python dependencies
working-directory: enki
run: |
pip install -r requirements.txt
pip install pylint==2.17.5
pip install pylint-protobuf==0.20.2
pip install -r requirements_pylint.txt
- name: Running pylint
working-directory: enki
run: |
Expand Down
4 changes: 4 additions & 0 deletions requirements_pylint.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r requirements.txt

pylint==2.17.5
pylint-protobuf==0.20.2

0 comments on commit e83a796

Please sign in to comment.