reattempt to fix partial printing of dfs #103
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: ci | |
on: | |
push: | |
branches: master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
name: "Build and deploy to pypi" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
architecture: "x64" | |
- name: "Dependencies" | |
run: | | |
pip install poetry twine | |
- name: "Build" | |
run: poetry build | |
- name: "Publish" | |
run: | | |
twine upload dist/* --username __token__ --skip-existing --password ${{ secrets.PYPI_API_TOKEN }} | |