test: add test for pip install on python 3.10, 3.11, and 3.12 and remove crewAI tools (#2082)
This commit is contained in:
23
.github/workflows/test-pip-install.yml
vendored
Normal file
23
.github/workflows/test-pip-install.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Test Package Installation
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
test-install:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.10", "3.11", "3.12"] # Adjust Python versions as needed
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Install package with extras
|
||||
run: pip install '.[external-tools,postgres,dev,server,ollama]' # Replace 'all' with the key that includes all extras
|
||||
|
||||
- name: Check package installation
|
||||
run: pip list # Or any other command to verify successful installation
|
||||
1
.github/workflows/test_anthropic.yml
vendored
1
.github/workflows/test_anthropic.yml
vendored
@@ -2,6 +2,7 @@ name: Anthropic Claude Opus 3 Capabilities Test
|
||||
|
||||
env:
|
||||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||
COMPOSIO_API_KEY: ${{ secrets.COMPOSIO_API_KEY }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
1
.github/workflows/test_ollama.yml
vendored
1
.github/workflows/test_ollama.yml
vendored
@@ -2,6 +2,7 @@ name: Endpoint (Ollama)
|
||||
|
||||
env:
|
||||
OLLAMA_BASE_URL: "http://localhost:11434"
|
||||
COMPOSIO_API_KEY: ${{ secrets.COMPOSIO_API_KEY }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
1
.github/workflows/test_openai.yml
vendored
1
.github/workflows/test_openai.yml
vendored
@@ -2,6 +2,7 @@ name: OpenAI GPT-4 Capabilities Test
|
||||
|
||||
env:
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
COMPOSIO_API_KEY: ${{ secrets.COMPOSIO_API_KEY }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
1
.github/workflows/test_together.yml
vendored
1
.github/workflows/test_together.yml
vendored
@@ -2,6 +2,7 @@ name: Together Llama 3.1 70b Capabilities Test
|
||||
|
||||
env:
|
||||
TOGETHER_API_KEY: ${{ secrets.TOGETHER_API_KEY }}
|
||||
COMPOSIO_API_KEY: ${{ secrets.COMPOSIO_API_KEY }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
Reference in New Issue
Block a user