From 881bc810872bbb425b553736388610f8ad9e4f34 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 6 Aug 2023 02:44:49 -0500 Subject: [PATCH] workflow: minimize, improve output --- .forgejo/workflows/pylint.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index 26a269f..bc177b5 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -13,9 +13,9 @@ jobs: steps: - name: Install package dependencies run: | + echo "Making DNF more performant with these directives:" echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf - dnf -yq install nodejs git python3-pip python3-virtualenv python3-pylint-venv - dnf clean all + dnf -yq install nodejs git python3-pip python3-virtualenv # - name: "Set up Python ${{ matrix.python-version }}" # uses: https://github.com/actions/setup-python@v3 # with: @@ -25,8 +25,10 @@ jobs: run: | python3 -m venv venv source venv/bin/activate - python3 -m pip install --upgrade pip pylint - python3 -m pip install -r requirements.txt + python3 -m pip install --upgrade pip + python3 -m pip install --upgrade wheel + python3 -m pip install pylint + python3 -m pip install --no-compile -r requirements.txt - name: Analysing the code with pylint run: | source venv/bin/activate