Skip to content

[update] update user handling in message processing and system messag… #753

[update] update user handling in message processing and system messag…

[update] update user handling in message processing and system messag… #753

Workflow file for this run

name: CI
on:
push:
pull_request:
release:
types: [ published ]
permissions:
contents: read
jobs:
tests:
name: pytest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run tests
run: pytest