Skip to content

fix: work around pydantic-settings 2.13.0 nested subcommand bug (ENG-6707) #176

fix: work around pydantic-settings 2.13.0 nested subcommand bug (ENG-6707)

fix: work around pydantic-settings 2.13.0 nested subcommand bug (ENG-6707) #176

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
- release/**
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0 # Fetch full history for license year detection
- name: Install
uses: ./.github/composites/install
- name: Lint
run: |
just lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install
uses: ./.github/composites/install
- name: Install Python
run: uv python install ${{ matrix.python-version }}
- name: Unit tests
run: |
uv run --python ${{ matrix.python-version }} pytest --cov