You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 6, 2023. It is now read-only.
# This workflow will upload a Python Package using Twine when a release is created
2
+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+
name: Test and Upload Python Package
5
+
6
+
on:
7
+
push:
8
+
tags:
9
+
- '*'
10
+
11
+
jobs:
12
+
deploy:
13
+
14
+
runs-on: ubuntu-latest
15
+
16
+
steps:
17
+
- uses: actions/checkout@v2
18
+
- uses: s-weigand/setup-conda@v1
19
+
with:
20
+
python-version: 3.6
21
+
- name: Which python
22
+
run: |
23
+
conda --version
24
+
which python
25
+
- name: Install dependencies
26
+
run: |
27
+
pip install .
28
+
pip install pytest
29
+
pip install setuptools wheel twine
30
+
pip install herdingspikes==0.3.7
31
+
pip install pyqt5
32
+
pip install hdbscan
33
+
pip install loky
34
+
pip install tridesclous>=1.6.3
35
+
- name: Test with pytest and build coverage report
0 commit comments