patch(deps): update dependency pydantic to v2.10.4 (#80) #206
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: general | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install generator | |
run: npm install @openapitools/openapi-generator-cli -g | |
- name: Run generate | |
run: bash hack/generate-client.sh | |
- name: Install requirements | |
run: pip install poetry -qq | |
- name: Run install | |
run: poetry install | |
- name: Run test | |
run: poetry run pytest | |
- name: Run build | |
run: poetry build | |
... |