We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a1d2e0 commit b4bbe04Copy full SHA for b4bbe04
1 file changed
.github/workflows/python.yml
@@ -7,32 +7,25 @@ on:
7
branches: [ implement_ci ]
8
9
jobs:
10
+ build:
11
- setup:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
python-version: [3.6, 3.7, 3.8]
16
+
17
steps:
18
- uses: actions/checkout@v2
19
- name: Set up Python ${{ matrix.python-version }}
20
uses: actions/setup-python@v2
21
with:
22
python-version: ${{ matrix.python-version }}
-
23
- build:
24
- needs: setup
25
- steps:
26
- name: Install plasma source
27
run: |
28
git submodule update --init --recursive
29
pip install wheel
30
python setup.py bdist_wheel
31
python -m pip install --verbose dist/*.whl
32
33
- publish:
34
- needs: build
35
36
- name: upload wheel
37
uses: actions/upload-artifact@v2
38
0 commit comments