Skip to content

chore(beads): close claude_code_bridge-4.1 #28

chore(beads): close claude_code_bridge-4.1

chore(beads): close claude_code_bridge-4.1 #28

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
name: ${{ matrix.os }} / py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: |
python -m pip install --upgrade pip
python -m pip install pytest
- name: Syntax check
run: python -m compileall -q lib bin cq
- name: Run tests
run: pytest test/ -v --tb=short
shell: bash