Skip to content

Commit

Permalink
feat: GitHub Action for Ruff and Pylint Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
erfjab committed Nov 5, 2024
1 parent 9111c51 commit 79aa565
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Code Quality Checks

on:
push:
branches:
- master
pull_request:

jobs:
ruff:
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.11.0'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pylint
- name: Run Ruff Format
run: |
ruff format --check .
- name: Run Ruff Check
run: |
ruff check .
- name: Run Pylint
run: |
pylint . --fail-under=10

0 comments on commit 79aa565

Please sign in to comment.