Updated news #771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
push: | |
branches: [main, master, release-1.5] | |
pull_request: | |
branches: [main, master, release-1.5] | |
name: Schema | |
jobs: | |
schema-consistency-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
pip install pyyaml pandas xlrd deepdiff jinja2 jsondiff | |
- name: Schema consistency tests | |
run: | | |
python tests/check-consistency-miairr.py | |
python tests/check-consistency-formats.py |