Skip to content

chore(classifier): record reconstructed wall-clock for the v0.2.0 col… #30

chore(classifier): record reconstructed wall-clock for the v0.2.0 col…

chore(classifier): record reconstructed wall-clock for the v0.2.0 col… #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run build
- run: npm run typecheck
- run: npm run lint
- run: npm run test
- run: npm audit --audit-level=moderate
python:
runs-on: ubuntu-latest
defaults:
run:
working-directory: research
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
cache-dependency-glob: "research/pyproject.toml"
- name: uv sync (with dev)
run: uv sync --all-extras --dev
- name: ruff
run: uv run ruff check .
- name: pytest
run: uv run pytest