@@ -3,42 +3,42 @@ name: CLI
33on :
44 push :
55 branches :
6- - master
7- - testing
6+ - master
7+ - testing
88jobs :
99 library :
1010 # if: github.event.comment.body == 'test core'
1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- python-version : [3.8, 3.9, ' 3.10', ' 3.11', ' 3.12', ' 3.13' ]
14+ python-version : [3.8, 3.9, " 3.10", " 3.11", " 3.12", " 3.13", "3.14" ]
1515 steps :
16- - run : |
17- pip install -U polyaxon
16+ - run : |
17+ pip install -U polyaxon
1818 tests :
19- # if: github.event.comment.body == 'test core'
19+ # if: github.event.comment.body == 'test core'
2020 runs-on : ubuntu-latest
2121 strategy :
2222 matrix :
23- python-version : [3.8, 3.9, ' 3.10', ' 3.11', ' 3.12', ' 3.13' ]
23+ python-version : [3.8, 3.9, " 3.10", " 3.11", " 3.12", " 3.13", "3.14" ]
2424
2525 steps :
26- - uses : actions/checkout@v4
27- - name : Set up Python ${{ matrix.python-version }}
28- uses : actions/setup-python@v5
29- with :
30- python-version : ${{ matrix.python-version }}
31- - name : Upgrade pip
32- run : |
33- which python
34- python -m pip install --upgrade pip
35- - name : Install test dependencies
36- run : pip install -r cli/requirements/test.txt
37- - name : Install master dependencies
38- run : pip install -r cli/requirements/master.txt
39- - name : Install dev libraries
40- run : export USE_LOCAL_PACKAGES="true" && pip install --upgrade --editable "cli[dev,k8s_async,fsspec,init,sidecar]"
41- - name : Test with pytest
42- run : |
43- cd cli
44- pytest -vv
26+ - uses : actions/checkout@v4
27+ - name : Set up Python ${{ matrix.python-version }}
28+ uses : actions/setup-python@v5
29+ with :
30+ python-version : ${{ matrix.python-version }}
31+ - name : Upgrade pip
32+ run : |
33+ which python
34+ python -m pip install --upgrade pip
35+ - name : Install test dependencies
36+ run : pip install -r cli/requirements/test.txt
37+ - name : Install master dependencies
38+ run : pip install -r cli/requirements/master.txt
39+ - name : Install dev libraries
40+ run : export USE_LOCAL_PACKAGES="true" && pip install --upgrade --editable "cli[dev,k8s_async,fsspec,init,sidecar]"
41+ - name : Test with pytest
42+ run : |
43+ cd cli
44+ pytest -vv
0 commit comments