From c4f08636b29af3c3a1ff42b9bc66edf2c9822758 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 29 Aug 2023 23:44:10 -0500 Subject: [PATCH] forgejo: make pip quieter --- .forgejo/workflows/pylint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index f79054e..19c159b 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -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