-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathtesting-dependency-asyncio.yaml
More file actions
39 lines (37 loc) · 1.14 KB
/
testing-dependency-asyncio.yaml
File metadata and controls
39 lines (37 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Dependency Testing (Asyncio)
on:
workflow_call:
inputs:
index_name:
required: true
type: string
encrypted_project_api_key:
required: true
type: string
jobs:
dependency-matrix-asyncio-rest:
name: Deps (Asyncio REST)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version:
- '3.10'
- 3.13
aiohttp_version:
- 3.10.0
- 3.11.5
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/secret-decrypt
id: decrypt-secret
with:
encryption_key: '${{ secrets.FERNET_ENCRYPTION_KEY }}'
encrypted_secret: ${{ inputs.encrypted_project_api_key }}
- uses: ./.github/actions/test-dependency-asyncio-rest
with:
python_version: '${{ matrix.python_version }}'
index_name: '${{ inputs.index_name }}'
PINECONE_API_KEY: '${{ steps.decrypt-secret.outputs.decrypted_secret }}'
PINECONE_ADDITIONAL_HEADERS: '{"sdk-test-suite": "pinecone-python-client"}'
aiohttp_version: '${{ matrix.aiohttp_version }}'