workflow: minimize, improve output
This commit is contained in:
parent
f5c72203ac
commit
881bc81087
1 changed files with 6 additions and 4 deletions
|
@ -13,9 +13,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install package dependencies
|
- name: Install package dependencies
|
||||||
run: |
|
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
|
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 -yq install nodejs git python3-pip python3-virtualenv
|
||||||
dnf clean all
|
|
||||||
# - name: "Set up Python ${{ matrix.python-version }}"
|
# - name: "Set up Python ${{ matrix.python-version }}"
|
||||||
# uses: https://github.com/actions/setup-python@v3
|
# uses: https://github.com/actions/setup-python@v3
|
||||||
# with:
|
# with:
|
||||||
|
@ -25,8 +25,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
python3 -m pip install --upgrade pip pylint
|
python3 -m pip install --upgrade pip
|
||||||
python3 -m pip install -r requirements.txt
|
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
|
- name: Analysing the code with pylint
|
||||||
run: |
|
run: |
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
|
|
Reference in a new issue