Skip to content

Commit cfe86b6

Browse files
committed
add 3.11 version of python in the matrix
1 parent 1ce9794 commit cfe86b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: SerpApi Python
4+
name: serpapi-python
55

66
on:
77
push:
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8, 3.9]
18+
python-version: [3.6, 3.7, 3.8, 3.9, 3.11]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -35,6 +35,6 @@ jobs:
3535
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3636
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3737
- name: Test with pytest
38-
run: pytest
38+
run: make test
3939
env:
4040
API_KEY: ${{secrets.API_KEY}}

0 commit comments

Comments
 (0)