Skip to content

Merge pull request #2 from embodied-computation-group/dev #10

Merge pull request #2 from embodied-computation-group/dev

Merge pull request #2 from embodied-computation-group/dev #10

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install ruff
run: pip install "ruff>=0.9"
- name: Ruff check
run: ruff check .
- name: Ruff format check
run: ruff format --check .