This commit is contained in:
parent
4e02b8bd28
commit
699dbea5df
1 changed files with 2 additions and 1 deletions
|
@ -12,12 +12,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo "Making DNF more performant with these directives:"
|
echo "Making DNF more performant with these directives:"
|
||||||
echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf
|
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
|
- uses: actions/checkout@v3
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install --no-compile -r requirements.txt
|
python3 -m pip install --no-compile -r requirements.txt
|
||||||
|
python3 -m pip install pylint
|
||||||
- name: Show Python modules / versions
|
- name: Show Python modules / versions
|
||||||
run: python3 -m pip list
|
run: python3 -m pip list
|
||||||
- name: Analyse the code with pylint
|
- name: Analyse the code with pylint
|
||||||
|
|
Reference in a new issue