Skip to content

[Feat] pydanticv2

[Feat] pydanticv2 #49

Workflow file for this run

name: Vents
on:
push:
branches:
- main
- test
pull_request:
types: [opened, synchronize]
jobs:
library:
# if: github.event.comment.body == 'test core'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- run: |
pip install -U vents
tests:
# if: github.event.comment.body == 'test core'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
which python
python -m pip install --upgrade pip
- name: Install proc dependencies
run: pip install -r vents/requirements/prod.txt
- name: Install dev dependencies
run: pip install -r vents/requirements/dev.txt
- name: Install test dependencies
run: pip install -r vents/requirements/test.txt
- name: Test with pytest
run: |
cd vents
pytest -vv