Skip to content

Commit 35b5ab6

Browse files
committed
Adjust github test action
1 parent 7d400bd commit 35b5ab6

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,28 @@ jobs:
66
strategy:
77
matrix:
88
python-version:
9-
- '2.7'
109
- '3.6'
10+
- '3.7'
1111
- '3.8'
1212
- '3.9'
1313
- '3.10'
1414
- '3.11'
1515
- '3.12'
16+
- '3.13'
17+
- '3.14'
18+
- '3.15'
1619
name: Python ${{ matrix.python-version }} sample
1720
steps:
1821
- uses: actions/checkout@v4
1922
- uses: actions/setup-python@v4
2023
with:
2124
python-version: ${{ matrix.python-version }}
2225
cache: 'pip'
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
pip install -r requirements.txt
27-
pip install -r test-requirements.txt
26+
#- name: Install dependencies
27+
# run: |
28+
# python -m pip install --upgrade pip
29+
# pip install -r requirements.txt
30+
# pip install -r test-requirements.txt
2831
- name: Run tests
2932
env:
3033
DETECTLANGUAGE_API_KEY: ${{ secrets.DETECTLANGUAGE_API_KEY }}

0 commit comments

Comments
 (0)