Skip to content

chore: remove obsolete simulate/train parity probe #247

chore: remove obsolete simulate/train parity probe

chore: remove obsolete simulate/train parity probe #247

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- run: pip install ruff
- run: ruff check paramem/ tests/ experiments/
- run: ruff format --check paramem/ tests/ experiments/
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests (CPU only)
run: pytest tests/ -v --timeout=60 -m "not gpu"