Skip to content

updates to the google sheet and the converter #167

updates to the google sheet and the converter

updates to the google sheet and the converter #167

Workflow file for this run

name: testing schemas with python api
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10" ]
steps:
- name: Checkout this repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install the required packages
run: python -m pip install .[test]
- name: Run pytest
run: pytest -vs tests