Skip to content

added validation schemas for patch method #42

added validation schemas for patch method

added validation schemas for patch method #42

Workflow file for this run

name: Python lint and test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install deps
run: python3 -m pip install poetry && poetry install
- name: Run mypy
run: poetry run mypy .
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install deps
run: python3 -m pip install poetry && poetry install
- name: Run tests
run: poetry run pytest