Archived
1
1
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
36fea96bb6
forgejo: move DNF perf tweak to separate step
All checks were successful
Pylint / test (push) Successful in 1m2s
2023-08-29 23:46:59 -05:00
c4f08636b2
forgejo: make pip quieter 2023-08-29 23:44:10 -05:00

View file

@ -8,19 +8,24 @@ jobs:
container:
image: fedora:38 # lock to latest *stable*; rawhide/next is 'latest' tag
steps:
- name: Install package dependencies
- name: Make DNF faster
run: |
echo "Making DNF more performant with these directives:"
echo "Giving DNF 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
- name: Install package dependencies
run: 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
python3 -m pip -q install --upgrade pip
python3 -m pip -q install --no-compile -r requirements.txt
python3 -m pip -q install pylint
- name: Show Python modules / versions
run: python3 -m pip list
- name: Analyse the code with pylint
run: |
pylint $(git ls-files '*.py')