From fc32b34095394248e0052b1b397383da3e7c97c2 Mon Sep 17 00:00:00 2001 From: Firq Date: Fri, 4 Oct 2024 20:52:41 +0200 Subject: [PATCH] removed -q --- .forgejo/workflows/check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index 52521e8..ff40bce 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -11,7 +11,7 @@ jobs: uses: https://code.forgejo.org/actions/checkout@v3 - name: Install packages run: | - pip install -e .[lint] -q --disable-pip-version-check -q --no-cache-dir + pip install -e .[lint] -q --disable-pip-version-check --no-cache-dir python -m pip list --format=columns --disable-pip-version-check - name: Run pylint run: | @@ -26,7 +26,7 @@ jobs: uses: https://code.forgejo.org/actions/checkout@v3 - name: Install packages run: | - pip install -e .[typing] -q --disable-pip-version-check -q --no-cache-dir + pip install -e .[typing] -q --disable-pip-version-check --no-cache-dir python -m pip list --format=columns --disable-pip-version-check - name: Run mypy run: |