summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authortmartins <thigm85@gmail.com>2020-12-07 20:41:04 +0100
committertmartins <thigm85@gmail.com>2020-12-07 20:41:04 +0100
commitd80e73f9162819cff8f5ddd6e0474f6ab481a5c7 (patch)
tree00667786e0030bf0b091130fb6875e31c51edce1 /.github
parent663900a1ea319d3e9f72a0cd546ff3e9706eda93 (diff)
remove pyvespa old files as it has its own repo now.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/python.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
deleted file mode 100644
index 5839ae90dfd..00000000000
--- a/.github/workflows/python.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: CI
-on:
- pull_request:
- push:
- branches:
- - master
-jobs:
- build:
- runs-on: ubuntu-latest
- defaults:
- run:
- working-directory: python/vespa
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-python@v1
- with:
- python-version: '3.7'
- architecture: 'x64'
- - name: Install the library
- run: |
- pip install pytest
- pip install -e .
- - name: Test with pytest
- run: |
- pytest
- - name: Build and publish
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
- env:
- TWINE_USERNAME: __token__
- TWINE_PASSWORD: ${{ secrets.test_pypi_password }}
- run: |
- python -m pip install --upgrade pip
- pip install setuptools wheel twine
- python setup.py sdist bdist_wheel
- twine upload --repository testpypi dist/*