Skip to content

Bump pydantic from 2.11.1 to 2.11.4 (#17) #61

Bump pydantic from 2.11.1 to 2.11.4 (#17)

Bump pydantic from 2.11.1 to 2.11.4 (#17) #61

Workflow file for this run

name: CI Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
TZ: Europe/Berlin
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Python PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm install --dev
- name: Run Format
run: |
pdm run format
- name: Run Linter
run: |
pdm run lint
- name: Run Tests
run: |
pdm run tests