File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 44
44
id : pip-cache
45
45
run : echo "::set-output name=dir::$(pip cache dir)"
46
46
47
- - name : cache pip
47
+ - name : cache pip dependencies
48
48
uses : actions/cache@v2
49
49
with :
50
50
path : ${{ steps.pip-cache.outputs.dir }}
@@ -53,25 +53,23 @@ jobs:
53
53
- run : pip install tox
54
54
- run : tox -e ${{ matrix.tox }}
55
55
56
- coveralls :
56
+ coveralls_finish :
57
57
# check coverage increase/decrease
58
58
needs : tests
59
- runs-on : " ubuntu-latest"
59
+ runs-on : ubuntu-latest
60
60
steps :
61
61
- name : Coveralls Finished
62
62
uses : AndreMiras/coveralls-python-action@develop
63
- with :
64
- parallel-finished : true
65
63
66
64
deploy :
67
65
# builds and publishes to PyPi
68
- runs-on : " ubuntu-latest"
66
+ runs-on : ubuntu-latest
69
67
steps :
70
68
- uses : actions/checkout@v2
71
69
- name : Set up Python
72
70
uses : actions/setup-python@v2
73
71
with :
74
- python-version : " 3.7"
72
+ python-version : ' 3.7'
75
73
- name : Install dependencies
76
74
run : |
77
75
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments