add workflow to validate yaml files #1
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 yaml files | |
on: | |
- push | |
- pull_request | |
jobs: | |
validate-yaml: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: validate participants yaml files | |
run: yamllint -c yamllint-config.yaml _participants/* |