Skip to content

Commit

Permalink
Merge pull request #12 from ita-social-projects/#6Code_conven_pylint
Browse files Browse the repository at this point in the history
#6 code conven pylint
  • Loading branch information
romanmyko authored Nov 19, 2023
2 parents a12252a + 8d3465b commit e881825
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Pylint Check

on:
push:
branches:
- develop # Змініть цю гілку на ту, яку ви використовуєте

jobs:
lint_backend:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x # Ви можете вказати потрібну версію Python

- name: Install dependencies
run: pip install pylint

- name: Run Pylint
run: |
pylint administration authentification search profiles forum_sandbox

0 comments on commit e881825

Please sign in to comment.