Skip to content

Merge pull request #44 from khanlab/djay/patch-temp-logic #156

Merge pull request #44 from khanlab/djay/patch-temp-logic

Merge pull request #44 from khanlab/djay/patch-temp-logic #156

Workflow file for this run

name: Lint
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: pip install ruff
- name: Run ruff check
run: ruff check .
- name: Run ruff format check
run: ruff format --check .