Dynamic server name via MOD_DESKTOP_SERVER_NAME #261
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
name: pylint | |
on: [push] | |
jobs: | |
pylint: | |
runs-on: ubuntu-22.04 | |
name: pylint | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install virtualenv | |
run: | | |
sudo apt install python3-virtualenv | |
- name: Setup pylint | |
run: | | |
virtualenv modui-env | |
source modui-env/bin/activate | |
pip3 install -r requirements.txt | |
pip3 install pylint | |
- name: Run pylint | |
run: | | |
virtualenv modui-env | |
source modui-env/bin/activate | |
pylint -E mod/*.py | |
# modtools/*.py |