File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 43
43
name : " coverage-${{ matrix.python-version }}"
44
44
path : .coverage
45
45
46
- finish :
46
+
47
+ coverage :
47
48
needs : tests
48
49
runs-on : " ubuntu-18.04"
49
50
steps :
58
59
- name : Install dependencies 🔧
59
60
run : |
60
61
python -m pip install --upgrade pip setuptools wheel
61
- python -m pip install --upgrade tox
62
62
python -m pip install --upgrade coveralls coverage_pyver_pragma
63
63
64
64
- name : " Download Coverage"
87
87
run : |
88
88
coveralls
89
89
90
+ deploy :
91
+ needs : tests
92
+
93
+ runs-on : " ubuntu-18.04"
94
+ steps :
95
+ - name : Checkout 🛎️
96
+ uses : " actions/checkout@v2"
97
+
98
+ - name : Setup Python 🐍
99
+ uses : " actions/setup-python@v2"
100
+ with :
101
+ python-version : 3.8
102
+
103
+ - name : Install dependencies 🔧
104
+ run : |
105
+ python -m pip install --upgrade pip setuptools wheel
106
+ python -m pip install --upgrade tox
107
+
90
108
- name : Build source distribution 📦
91
109
run : |
92
110
tox -e build
@@ -102,7 +120,7 @@ jobs:
102
120
103
121
104
122
conda :
105
- needs : tests
123
+ needs : deploy
106
124
runs-on : " ubuntu-18.04"
107
125
steps :
108
126
- name : Checkout 🛎️
@@ -112,6 +130,6 @@ jobs:
112
130
run : |
113
131
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
114
132
bash miniconda.sh -b -p $HOME/miniconda
115
- chmod +x .ci/github_deploy_conda .sh
133
+ chmod +x .ci/actions_deploy_conda .sh
116
134
env :
117
135
ANACONDA_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
You can’t perform that action at this time.
0 commit comments