Skip to content

pydantic 2.0 migrate #64

pydantic 2.0 migrate

pydantic 2.0 migrate #64

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Poetry
run: |
python -m pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Publish
run: bash scripts/lint-test.sh
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 8
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Test
run: |
poetry run pytest --cov=rcs_pydantic tests/ --cov-report=xml
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)