chore: changed every genesis version name to genesis #155
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 source configs | |
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 }} |