This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Update dependency pylint to v3.3.1 (#179) #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- 'main' | |
- 'dev' | |
name: pylint | |
jobs: | |
pylint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: clone-branch | |
run: | | |
git clone -b dev https://github.com/Defirence/CSGO-Ping-Tester-redux.git | |
printf "List files and cd into repo dir on runner..." | |
ls -lah | |
sleep 1 | |
cd CSGO-Ping-Tester-redux | |
ls -lah | |
echo $PWD | |
sleep 1 | |
- name: run-pylint-check | |
run: | | |
printf "Running pylint checks against script..." | |
ls -lah | |
echo $PWD | |
cd CSGO-Ping-Tester-redux | |
pip install -r ./requirements.txt ; pylint --exit-zero ./main.py | |
printf "Done running pylint checks, exiting ..." |