Skip to content

add pydantic models #12

add pydantic models

add pydantic models #12

Workflow file for this run

name: test
on:
push:
branches:
- main
- devel
pull_request:
branches:
- main
- devel
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
name: dlt+ common tests
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Check out
uses: actions/checkout@master
with:
submodules: 'true'
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install common dependencies
run: make test