8000 Bump pydantic from 2.11.4 to 2.11.5 · EuroPython/programapi@9871486 · GitHub
[go: up one dir, main page]

Skip to content

Bump pydantic from 2.11.4 to 2.11.5 #556

Bump pydantic from 2.11.4 to 2.11.5

Bump pydantic from 2.11.4 to 2.11.5 #556

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Setup uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies from uv.lock
run: make deps/install
- name: Run pytest
run: make test
0