File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,16 @@ jobs:
16
16
run :
17
17
shell : bash
18
18
steps :
19
- - uses : actions/checkout@master
19
+ - uses : actions/checkout@v3
20
20
- name : Setup Python
21
- uses : actions/setup-python@v2
21
+ uses : actions/setup-python@v3
22
22
with :
23
23
python-version : ${{ matrix.python-version }}
24
- - uses : actions/cache@v2
25
- with :
26
- path : ~/.cache/pip
27
- key : pip-${{ hashFiles('**/requirements-dev.txt') }}
28
- restore-keys : |
29
- pip-${{ secrets.CACHE_VERSION }}-
30
- - name : Install development dependencies
31
- run : pip install -r requirements-dev.txt
32
- - name : Install package & dependencies
33
- run : pip install .
24
+ cache : " pip"
25
+ - name : Install dependencies
26
+ run : python -m pip install -r requirements.txt -r requirements-dev.txt .
34
27
- name : Test
35
- run : pytest
28
+ run : python -m pytest
36
29
37
30
release :
38
31
name : " Release"
You can’t perform that action at this time.
0 commit comments