Skip to content

Updated docs for handle_errors_async #18

Updated docs for handle_errors_async

Updated docs for handle_errors_async #18

Workflow file for this run

name: deploy-on-tag
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.8.4
- name: Log in to pypi
run: poetry config pypi-token.pypi ${{ secrets.PYPI_API_KEY }}
- name: Build package
run: poetry build
- name: Publish package
run: poetry publish