Skip to content

Correct description about hetero array tests in README #37

Correct description about hetero array tests in README

Correct description about hetero array tests in README #37

Workflow file for this run

name: Build and Deploy
on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python # Set Python version
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Publish to PyPI
run: poetry publish --build -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASSWORD }}
if: success()