update photo-z catalog info #37
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: Validate SDM schemas using Felis | |
on: [push, workflow_dispatch] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install 'lsst-felis @ git+https://github.com/lsst/felis@main' | |
- name: Validate YAML files | |
run: felis validate --check-redundant-datatypes ./yml/*.yaml |