Skip to content

build(deps-dev): bump the development-dependencies group across 1 directory with 2 updates #24

build(deps-dev): bump the development-dependencies group across 1 directory with 2 updates

build(deps-dev): bump the development-dependencies group across 1 directory with 2 updates #24

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
with:
enable-cache: true
- name: Install development dependencies
run: uv sync --frozen
- name: Lint
run: uv run ruff check .
- name: Check formatting
run: uv run ruff format --check .
- name: Test with coverage
run: |
uv run coverage run --branch -m pytest -m "not integration" --tb=short -q
uv run coverage report --fail-under=90
hermes-compatibility:
name: Hermes Agent 0.18.2
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.13"
- name: Set up uv
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
with:
enable-cache: true
- name: Install development and Hermes dependencies
run: |
uv sync --frozen
uv pip install "hermes-agent==0.18.2"
- name: Run real Hermes integration test
run: uv run pytest tests/test_hermes_integration.py -m integration --tb=short -q