Skip to content

Separate app structure into client/server #30

Separate app structure into client/server

Separate app structure into client/server #30

Workflow file for this run

name: pylint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11.5
uses: actions/setup-python@v3
with:
python-version: 3.11.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')