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