Skip to content

chore: bump version to 0.9.53 #224

chore: bump version to 0.9.53

chore: bump version to 0.9.53 #224

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.12"
- run: pip install ruff
- run: ruff check src/ tests/
- run: ruff format --check src/ tests/
ci-smoke:
runs-on: ubuntu-latest
env:
OPENMAX_PANE_BACKEND: headless
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]" || pip install -e . && pip install pytest
- run: PYTHONPATH=src pytest -q tests/test_ci_smoke.py
test:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]" || pip install -e . && pip install pytest
- run: python -m pytest tests/ -v