Skip to content

Set a limit of one day for the timeout in engineering mode #47

Set a limit of one day for the timeout in engineering mode

Set a limit of one day for the timeout in engineering mode #47

Workflow file for this run

name: Lint
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
pull_request:
branches: [main]
paths-ignore:
- 'docs/**'
jobs:
lint:
name: Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Lint with ruff
run: |
uv tool install ruff
ruff check python/ tests/
ruff format --check python/ tests/