Skip to content

feat: v0.3.0 major upgrade for all core packages #3

feat: v0.3.0 major upgrade for all core packages

feat: v0.3.0 major upgrade for all core packages #3

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package with dev deps
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check hermes_pmxt/ tests/
- name: Run unit tests
run: python -m pytest -q -m unit --tb=short
- name: Verify package can be imported without pmxt
run: python -c "import hermes_pmxt; print('OK v' + hermes_pmxt.__version__)"