Skip to content

Merge pull request #28 from sacredvoid/fix/inference-config-hardcoded… #34

Merge pull request #28 from sacredvoid/fix/inference-config-hardcoded…

Merge pull request #28 from sacredvoid/fix/inference-config-hardcoded… #34

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@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: pip install -e ".[dev]"
- run: ruff check src/ tests/
- run: ruff format --check src/ tests/
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: pip install -e ".[dev]"
- run: pytest tests/ -v