feat: improved workflows #3
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: Merge Source configs and validate them | |
on: | |
push: | |
paths: | |
- '**.yml' | |
jobs: | |
validate_registry: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v2 | |
- name: Install required Python packages | |
run: pip install -r .github/requirements.txt | |
working-directory: ${{ github.workspace }} | |
- name: Merge Source configs and write Source-Registry | |
run: python .github/validate_registry.py | |
working-directory: ${{ github.workspace }} |