File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : CI testing
2
2
3
- # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
3
+ # https://help.github.com/en/actions/reference/events-that-trigger-workflows
4
4
on :
5
5
# Trigger the workflow on push or pull request,
6
6
# but only for the master branch
@@ -63,12 +63,12 @@ jobs:
63
63
# Note: This uses an internal pip API and may not always work
64
64
# https://github.com/actions/cache/blob/master/examples.md#multiple-oss-in-a-workflow
65
65
- name : Get pip cache
66
- id : pip-cache
67
- run : |
68
- python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
66
+ id : pip-cache
67
+ run : |
68
+ python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
69
69
70
70
- name : Cache pip
71
- - uses : actions/cache@v1
71
+ uses : actions/cache@v1
72
72
with :
73
73
path : ${{ steps.pip-cache.outputs.dir }}
74
74
key : ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-extra.txt') }}
@@ -116,7 +116,6 @@ jobs:
116
116
python setup.py check --metadata --strict
117
117
python setup.py sdist
118
118
twine check dist/*
119
-
120
119
# - name: Try install package
121
120
# if: ! startsWith(matrix.os, 'windows')
122
121
# run: |
@@ -127,4 +126,4 @@ jobs:
127
126
- name : Statistics
128
127
if : success()
129
128
run : |
130
- coverage report
129
+ coverage report
You can’t perform that action at this time.
0 commit comments