Skip to content

Update dependency pydantic to v2.9.2 #588

Update dependency pydantic to v2.9.2

Update dependency pydantic to v2.9.2 #588

Workflow file for this run

name: CI
on:
push:
branches: ["main", "renovate/*"]
tags: ["*.*.*"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') != true
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/pyproject.toml', '**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: poetry install
run: |
pip install poetry
poetry install
- run: poetry run pyright sachi/
- run: poetry run ruff check sachi/
if: always()
release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: |
pip install poetry
poetry publish --build
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
- run: |
gh release create ${{ github.ref_name }} dist/* \
--generate-notes \
--notes-start-tag $(git tag --sort -v:refname | head -n2 | tail -n1)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}