forgejo: make pip quieter
This commit is contained in:
parent
699dbea5df
commit
c4f08636b2
1 changed files with 3 additions and 3 deletions
|
@ -16,9 +16,9 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install --no-compile -r requirements.txt
|
||||
python3 -m pip install pylint
|
||||
python3 -m pip -q install --upgrade pip
|
||||
python3 -m pip -q install --no-compile -r requirements.txt
|
||||
python3 -m pip -q install pylint
|
||||
- name: Show Python modules / versions
|
||||
run: python3 -m pip list
|
||||
- name: Analyse the code with pylint
|
||||
|
|
Reference in a new issue