feat(sdk): add longmemory-sdk Python HTTP client and openmemory-py br… #148
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # __ __ ___ | |
| # / / ____ ____ ____ _/ |/ /__ ____ ___ ____ _______ __ | |
| # / / / __ \/ __ \/ __ `/ /|_/ / _ \/ __ `__ \/ __ \/ ___/ / / / | |
| # / /___/ /_/ / / / / /_/ / / / / __/ / / / / / /_/ / / / /_/ / | |
| # /_____/\____/_/ /_/\__, /_/ /_/\___/_/ /_/ /_/\____/_/ \__, / | |
| # /____/ /____/ | |
| # | |
| # cavira oss (c) 2026 - nullure (c) 2026 | |
| # ---------------------------------------------------------- | |
| # file : .github/workflows/ci.yml | |
| # usage : automates the LongMemory ci workflow | |
| name: Release checks | |
| on: | |
| push: | |
| branches: [main, rewrite] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: release-checks-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11.5.2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: npm --prefix dashboard ci | |
| - run: pnpm release:check | |
| - run: npm install --global @anthropic-ai/claude-code | |
| - run: pnpm integration:claude:validate |