Merge pull request #22 from N3rdP1um23/dev #2
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: Validate all Datapoints are covered | |
on: push | |
# on: | |
# push: | |
# branches: | |
# - main | |
# pull_request: | |
# schedule: | |
# - cron: '0 0 * * *' | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ci_requirements.txt | |
- name: eexecute validation script | |
run: python oeb_validation.py |