Merge pull request #2 from joshlay/add_reqs

add requirements for linting
This commit is contained in:
Josh Lay 2023-10-14 23:05:45 -05:00 committed by GitHub
commit 310fcaba6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

View file

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
@ -16,8 +16,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
sudo apt install -y libsystemd-dev
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')

4
requirements.txt Normal file
View file

@ -0,0 +1,4 @@
i3ipc
xdg
systemd-python
PyYAML

View file

@ -1,4 +1,5 @@
#!/usr/bin/env python3
# pylint: disable=line-too-long
"""
A smart but also lazy login autostart manager for i3/Sway.