Skip to content

Commit 4eb8f3e

Browse files
committed
CI: add python 3.9 and 3.10 to install tests in github workflows
1 parent 3511b87 commit 4eb8f3e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/static-test-install.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ jobs:
55
test-install-uv:
66
runs-on: ubuntu-latest
77
name: basic install of compressai-vision (torch cpu)
8+
strategy:
9+
matrix:
10+
python-version:
11+
- "3.8"
12+
- "3.9"
13+
- "3.10"
14+
815
steps:
916
- uses: actions/checkout@v4
1017
with:
@@ -13,9 +20,9 @@ jobs:
1320
- name: Setup Python
1421
uses: actions/setup-python@v2
1522
with:
16-
python-version: '3.8'
23+
python-version: ${{ matrix.python-version }}
1724

1825
- name: install detectron2 and project with pip for test
1926
run: |
20-
bash scripts/install.sh -m detectron2 --no-weights --cpu
27+
bash scripts/install.sh -m "detectron2,yolox,segment_anything,jde" --no-weights --cpu
2128

0 commit comments

Comments
 (0)