Skip to content

feat: Set up ruff linting and formatting to standardize code-style #3

feat: Set up ruff linting and formatting to standardize code-style

feat: Set up ruff linting and formatting to standardize code-style #3

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check .