File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -34,25 +34,27 @@ jobs:
34
34
strategy :
35
35
fail-fast : false
36
36
matrix :
37
- python-version : [
37
+ python : [
38
38
" 3.7" ,
39
39
" 3.8" ,
40
40
" 3.9" ,
41
41
" 3.10" ,
42
42
" pypy-3.7" ,
43
43
" pypy-3.8" ,
44
44
]
45
- trino-version : [
46
- " 351" , # first Trino version
45
+ trino : [
47
46
" latest" ,
48
47
]
48
+ include :
49
+ # Test with older Trino versions for backward compatibility
50
+ - { python: "3.10", trino: "351" } # first Trino version
49
51
env :
50
- TRINO_VERSION : " ${{ matrix.trino-version }}"
52
+ TRINO_VERSION : " ${{ matrix.trino }}"
51
53
steps :
52
54
- uses : actions/checkout@v2
53
55
- uses : actions/setup-python@v2
54
56
with :
55
- python-version : ${{ matrix.python-version }}
57
+ python-version : ${{ matrix.python }}
56
58
- name : Install dependencies
57
59
run : |
58
60
sudo apt-get update
You can’t perform that action at this time.
0 commit comments