Skip to content

Update Pydantic to v2.4.2 (#22) #18

Update Pydantic to v2.4.2 (#22)

Update Pydantic to v2.4.2 (#22) #18

Workflow file for this run

name: Build and upload to PyPI
on:
push:
tags:
- "*"
jobs:
build_and_upload:
name: Build and upload
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 🐍
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Poetry and pre-commit πŸ’ˆ
run: pip install poetry pre-commit
- name: Install dependencies πŸ› 
run: poetry install
- name: Run tests 🌈
run: poetry run invoke test
- name: Publish package to PyPI πŸ™Œ
run: |
set -e
poetry config http-basic.pypi "__token__" "${PYPI_TOKEN}"
poetry publish --build
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}