Merge pull request #45 from joshyattridge/Fix_iloc_issue_in_retracements #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build and publish to pypi | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
test-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: false | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.3.2" | |
- name: Add Poetry Plugins | |
run: | | |
poetry self add poetry-dynamic-versioning[plugin] | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest | |
env: | |
HEAD: release | |
- name: Config PIPY | |
run: poetry config pypi-token.pypi ${{ secrets.PIPY_TOKEN }} | |
- name: build and publish | |
run: poetry publish --build |