Skip to content

feat: GitHub Action for Ruff and Pylint Checks #1

feat: GitHub Action for Ruff and Pylint Checks

feat: GitHub Action for Ruff and Pylint Checks #1

Workflow file for this run

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