Skip to content

more notes have been added #15

more notes have been added

more notes have been added #15

Workflow file for this run

name: Pytest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install schema module
run: |
python -m pip install --upgrade pip
python -m pip install setuptools
python -m pip install -e .
- name: Run pytest
run: |
cd hdr_schemata/tests/
pytest