Skip to content

run schema tests in CI #69

run schema tests in CI

run schema tests in CI #69

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: pip install .[development]
- name: Test
run: |
python run_tests.py
python tests/data_schemas.py