Skip to content

Commit

Permalink
feat: Add GitHub Action for Ruff check and format
Browse files Browse the repository at this point in the history
  • Loading branch information
erfjab committed Nov 5, 2024
1 parent 9111c51 commit 0e56233
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
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 0e56233

Please sign in to comment.