Archived
1
1
Fork 0

forgejo: make pip quieter

This commit is contained in:
Josh Lay 2023-08-29 23:44:10 -05:00
parent 699dbea5df
commit c4f08636b2
Signed by: jlay
GPG key ID: B265E45CACAD108A

View file

@ -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