Skip to content

chore: simplify agent executor implementation (#1730) #308

chore: simplify agent executor implementation (#1730)

chore: simplify agent executor implementation (#1730) #308

Workflow file for this run

name: agentstack-sdk-py-test
permissions:
contents: read
on:
workflow_dispatch: { }
pull_request:
paths:
- 'apps/agentstack-sdk-py/**'
push:
branches:
- main
paths:
- 'apps/agentstack-sdk-py/**'
jobs:
agentstack-sdk-py-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.11"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: "Set up Lima"
uses: lima-vm/lima-actions/setup@v1
id: lima-actions-setup
- name: "Cache ~/.cache/lima"
uses: actions/cache@v4
with:
path: ~/.cache/lima
key: lima-${{ steps.lima-actions-setup.outputs.version }}
- uses: ./.github/actions/setup
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: mise run agentstack-sdk-py:test-all --python=${{ matrix.python }}