Add CEDV enum coverage closeout #21
This file contains hidden or 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: check-cedv-relation-basis-validation | |
| on: | |
| push: | |
| paths: | |
| - 'protocol/cedv/**' | |
| - 'scripts/check_cedv_relation_basis_validation.py' | |
| - '.github/workflows/check-cedv-relation-basis-validation.yml' | |
| pull_request: | |
| paths: | |
| - 'protocol/cedv/**' | |
| - 'scripts/check_cedv_relation_basis_validation.py' | |
| - '.github/workflows/check-cedv-relation-basis-validation.yml' | |
| jobs: | |
| check-cedv-relation-basis-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Run CEDV relation and basis validation checker | |
| run: python scripts/check_cedv_relation_basis_validation.py |