Skip to content

Commit

Permalink
ci: correct the requirements path
Browse files Browse the repository at this point in the history
  • Loading branch information
narenaryan committed Apr 28, 2024
1 parent 590bc49 commit d803c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files 'src/*.py')
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r promptml/requirements.txt
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
python -m unittest

0 comments on commit d803c80

Please sign in to comment.