File tree 4 files changed +12
-18
lines changed
4 files changed +12
-18
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,16 @@ jobs:
18
18
OS : ' linux'
19
19
timeout-minutes : 2
20
20
steps :
21
- - uses : actions/cache@v1
21
+ - uses : actions/cache@v4
22
22
with :
23
23
path : ~/.cache/pip
24
24
key : static-pip-${{ hashFiles('setup.py') }}
25
25
restore-keys : static-pip-
26
- - uses : actions/checkout@v2
27
- - uses : actions/setup-python@v2
26
+ - uses : actions/checkout@v4
27
+ - uses : actions/setup-python@v5
28
28
with :
29
- # TODO: check with Python 3, but need to fix the
30
- # errors first
31
29
python-version : ' 3.8'
32
30
architecture : ' x64'
33
- - run : python -m pip install --upgrade pip setuptools
34
31
- run : pip install -e .[test]
35
32
- name : Pylint checks
36
33
run : pylint pylsp_jsonrpc test
Original file line number Diff line number Diff line change @@ -23,17 +23,16 @@ jobs:
23
23
PYTHON_VERSION : ['3.10', '3.9', '3.8']
24
24
timeout-minutes : 10
25
25
steps :
26
- - uses : actions/cache@v1
26
+ - uses : actions/cache@v4
27
27
with :
28
28
path : ~/.cache/pip
29
29
key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
30
30
restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31
- - uses : actions/checkout@v2
32
- - uses : actions/setup-python@v2
31
+ - uses : actions/checkout@v4
32
+ - uses : actions/setup-python@v5
33
33
with :
34
34
python-version : ${{ matrix.PYTHON_VERSION }}
35
35
architecture : ' x64'
36
- - run : python -m pip install --upgrade pip setuptools
37
36
- run : pip install -e .[all,test]
38
37
- run : pytest -v test/
39
38
# Enable this if SSH debugging is required
Original file line number Diff line number Diff line change @@ -23,17 +23,16 @@ jobs:
23
23
PYTHON_VERSION : ['3.10', '3.9', '3.8']
24
24
timeout-minutes : 10
25
25
steps :
26
- - uses : actions/cache@v1
26
+ - uses : actions/cache@v4
27
27
with :
28
28
path : ~/Library/Caches/pip
29
29
key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
30
30
restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31
- - uses : actions/checkout@v2
32
- - uses : actions/setup-python@v2
31
+ - uses : actions/checkout@v4
32
+ - uses : actions/setup-python@v5
33
33
with :
34
34
python-version : ${{ matrix.PYTHON_VERSION }}
35
35
architecture : ' x64'
36
- - run : python -m pip install --upgrade pip setuptools
37
36
- run : pip install -e .[all,test]
38
37
- run : pytest -v test/
39
38
# Enable this if SSH debugging is required
Original file line number Diff line number Diff line change @@ -23,16 +23,15 @@ jobs:
23
23
PYTHON_VERSION : ['3.10', '3.9', '3.8']
24
24
timeout-minutes : 10
25
25
steps :
26
- - uses : actions/cache@v1
26
+ - uses : actions/cache@v4
27
27
with :
28
28
path : ~\AppData\Local\pip\Cache
29
29
key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
30
30
restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31
- - uses : actions/checkout@v2
32
- - uses : actions/setup-python@v2
31
+ - uses : actions/checkout@v4
32
+ - uses : actions/setup-python@v5
33
33
with :
34
34
python-version : ${{ matrix.PYTHON_VERSION }}
35
35
architecture : ' x64'
36
- - run : python -m pip install --upgrade pip setuptools
37
36
- run : pip install -e .[all,test]
38
37
- run : pytest -v test/
You can’t perform that action at this time.
0 commit comments