Datasets:
Modalities:
Text
Formats:
csv
Languages:
English
Size:
< 1K
Tags:
biohacking
wellness-technology
structured-data
machine-readable
interoperability
reproducibility
License:
| name: Validate Open Biohacking Data | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Validate project metadata | |
| shell: pwsh | |
| run: | | |
| .\validation\validate_project_metadata.ps1 | |
| - name: Generate interoperability artifacts | |
| shell: pwsh | |
| run: | | |
| .\build\generate_interoperability.ps1 | |
| - name: Generate JSON-LD catalog | |
| shell: pwsh | |
| run: | | |
| .\build\generate_catalog_jsonld.ps1 | |
| - name: Generate RO-Crate metadata | |
| shell: pwsh | |
| run: | | |
| .\build\generate_ro_crate.ps1 | |
| - name: Generate JSONL exports | |
| shell: pwsh | |
| run: | | |
| .\build\generate_jsonl.ps1 | |
| - name: Generate project identity | |
| shell: pwsh | |
| run: | | |
| .\build\generate_project_identity.ps1 | |
| - name: Generate supersession registry | |
| shell: pwsh | |
| run: | | |
| .\build\generate_supersession_registry.ps1 | |
| - name: Generate provenance | |
| shell: pwsh | |
| run: | | |
| .\build\generate_provenance.ps1 | |
| - name: Verify generated artifacts are reproducible | |
| shell: pwsh | |
| run: | | |
| git diff --exit-code -- datapackage.json DATA_DICTIONARY.md catalog.jsonld ro-crate-metadata.json data/jsonl/v1.2 project_identity.json supersession_registry.json provenance.generated.json | |
| - name: Build current release package | |
| shell: pwsh | |
| run: | | |
| .\build\build_release.ps1 | |