Test2 copy of test branch to main #61
Workflow file for this run
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
name: Bot validation | |
on: | |
push: | |
paths: | |
- 'caltechdata_api/cli.py' | |
- 'caltechdata_api/customize_schema.py' | |
- 'caltechdata_api/caltechdata_write.py' | |
- 'caltechdata_api/caltechdata_edit.py' | |
- 'README.md' | |
pull_request: | |
paths: | |
- 'caltechdata_api/cli.py' | |
- 'caltechdata_api/customize_schema.py' | |
- 'caltechdata_api/caltechdata_write.py' | |
- 'caltechdata_api/caltechdata_edit.py' | |
- 'README.md' | |
jobs: | |
validate-metadata: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest requests s3fs cryptography | |
pip install . | |
- name: Run against CaltechData Test system | |
env: | |
RDMTOK: ${{ secrets.CALTECHDATA_TOKEN }} | |
run: | | |
pytest test_unit.py | |
pytest test_rdm.py | |
- name: Run Medata Validation Test and RDM | |
run: | | |
cd tests | |
python tests/bot_yaml.py | |