Skip to content

Pylint action.

Pylint action. #2

name: Check with pylint
on:
push:
branches:
- main
jobs:
lint-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pydantic requests
- name: Run pylint
run: pylint py3xui