Skip to content

build(deps): bump pydantic from 1.10.8 to 1.10.13 in the pip group across 1 directory #65

build(deps): bump pydantic from 1.10.8 to 1.10.13 in the pip group across 1 directory

build(deps): bump pydantic from 1.10.8 to 1.10.13 in the pip group across 1 directory #65

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
env:
LANG: en_US.utf-8
LC_ALL: en_US.utf-8
PYTHONIOENCODING: UTF-8
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and pre-commit hooks
run: make setup
- name: Run tests
run: make test