Skip to content

Commit b4bbe04

Browse files
committed
Revert workflow to single job
1 parent 2a1d2e0 commit b4bbe04

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/python.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,25 @@ on:
77
branches: [ implement_ci ]
88

99
jobs:
10+
build:
1011

11-
setup:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
1515
python-version: [3.6, 3.7, 3.8]
16+
1617
steps:
1718
- uses: actions/checkout@v2
1819
- name: Set up Python ${{ matrix.python-version }}
1920
uses: actions/setup-python@v2
2021
with:
2122
python-version: ${{ matrix.python-version }}
22-
23-
build:
24-
needs: setup
25-
steps:
2623
- name: Install plasma source
2724
run: |
2825
git submodule update --init --recursive
2926
pip install wheel
3027
python setup.py bdist_wheel
3128
python -m pip install --verbose dist/*.whl
32-
33-
publish:
34-
needs: build
35-
steps:
3629
- name: upload wheel
3730
uses: actions/upload-artifact@v2
3831
with:

0 commit comments

Comments
 (0)