mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-18 21:09:41 +02:00
25 lines
519 B
YAML
25 lines
519 B
YAML
name: pylint Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
pylint-lint:
|
|
runs-on: ubuntu-latest
|
|
name: Lint
|
|
steps:
|
|
- name: Check out source repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python environment
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pylint
|
|
|
|
- name: Run pylint
|
|
run: |
|
|
pylint . --exit-zero
|