From 699dbea5df5621fec66b46563153a0da91023abb Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 29 Aug 2023 23:42:43 -0500 Subject: [PATCH] forgejo: use pip'd pylint --- .forgejo/workflows/pylint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yml b/.forgejo/workflows/pylint.yml index 0ac5c44..f79054e 100644 --- a/.forgejo/workflows/pylint.yml +++ b/.forgejo/workflows/pylint.yml @@ -12,12 +12,13 @@ jobs: 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 pylint + dnf -yq install nodejs git python3-pip - 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 - name: Show Python modules / versions run: python3 -m pip list - name: Analyse the code with pylint