Merge pull request #13 from Molecule-AI/gap-03-fix

feat(sdk): GAP-03 conftest, GAP-05 retry backoff, KI-002 idempotency key
This commit is contained in:
Hongming Wang
2026-04-24 13:27:24 -07:00
committed by GitHub
9 changed files with 1447 additions and 535 deletions
+29
View File
@@ -0,0 +1,29 @@
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e ".[test]"
- name: Run tests
run: python -m pytest tests/
- name: Lint
run: pip install ruff && ruff check molecule_agent/ molecule_plugin/