We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb4f53 commit 4d4198fCopy full SHA for 4d4198f
1 file changed
.github/workflows/ci.yml
@@ -12,6 +12,7 @@ jobs:
12
13
strategy:
14
fail-fast: false
15
+ max-parallel: 1
16
matrix:
17
python-version: ["3.9", "3.10", "3.11", "3.12"]
18
@@ -23,7 +24,7 @@ jobs:
23
24
uses: actions/setup-python@v5
25
with:
26
python-version: ${{ matrix.python-version }}
- cache: 'pip' # Speeds up subsequent runs by caching dependencies
27
+ cache: 'pip'
28
29
- name: Upgrade pip
30
run: python -m pip install --upgrade pip
@@ -38,6 +39,8 @@ jobs:
38
39
run: python -c "import intent_bus; print('SDK Import: OK')"
40
41
- name: Run pytest
42
+ env:
43
+ INTENT_API_KEY: ${{ secrets.INTENT_API_KEY }}
44
run: |
45
if [ -d tests ]; then
46
pytest tests/ -v
0 commit comments