Skip to content

Merge pull request #157 from lsst/tickets/DM-40921-v26 #422

Merge pull request #157 from lsst/tickets/DM-40921-v26

Merge pull request #157 from lsst/tickets/DM-40921-v26 #422

Workflow file for this run

name: Felis Linter
"on": [push]
jobs:
build:
runs-on: ubuntu-latest
# Only do Docker builds of ticket branches and tagged releases.
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/tickets/')
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
id: depend
run: pip install -r requirements.txt
working-directory: ./tap-schema
- name: Validate YAML files using felis
id: validate-felis
run: ./felis-validate
working-directory: ./tap-schema