Skip to content

Merge pull request #136 from ShrijalDubey/update-readme-132 #30

Merge pull request #136 from ShrijalDubey/update-readme-132

Merge pull request #136 from ShrijalDubey/update-readme-132 #30

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.13'
- name: Install lint tools
run: pip install ruff
- name: Run ruff
run: ruff check .
timeout-minutes: 5