Skip to content

Add GitHub Actions Workflows for Django Testing, Pylint, and Black #9687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Update pylint.yml
  • Loading branch information
youzarsiph authored Apr 10, 2025
commit ea4804f1b8fbfd4abc146a76f5efdba09477599b
6 changes: 5 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ jobs:

- name: Install dependencies
run: |
python -m venv .venv
source .vevn/bin/activate
python -m pip install --upgrade pip
pip install pylint

- name: Analysing the code with pylint
run: pylint .
run: |
source .vevn/bin/activate
pylint .