Merge pull request #124 from nfdi4cat/HendrikBorgelt-patch-1 #190
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
| # Built from: | |
| # https://docs.github.com/en/actions/guides/building-and-testing-python | |
| --- | |
| name: Build and test | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # Inbox-only PRs are handled exclusively by excel_inbox.yaml. | |
| # This workflow fires after the excel_inbox bot-commit (which removes the | |
| # inbox file and adds schema changes), so the test matrix runs on the | |
| # correct, already-validated schema — satisfying branch-protection checks. | |
| paths-ignore: | |
| - "inbox/**" | |
| env: | |
| FORCE_COLOR: "1" # Make tools pretty. | |
| permissions: {} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # needed alongside actions/upload-artifact below | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| fail-fast: false | |
| steps: | |
| # https://github.com/actions/checkout | |
| - name: Check out repository | |
| uses: actions/checkout@v7.0.0 | |
| with: | |
| persist-credentials: false | |
| # https://github.com/astral-sh/setup-uv | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| # https://github.com/actions/setup-python | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6.3.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install just | |
| run: | | |
| uv tool install rust-just | |
| - name: Install project | |
| run: uv sync --dev | |
| - name: Regenerate Excel vocabulary from schema | |
| # Keeps docs/assets/coremeta4cat_vocabulary.xlsx up to date | |
| # before any documentation build step uses it. | |
| run: just schema-to-excel | |
| - name: Run test suite | |
| run: just test | |
| # examples/output/ is generated by `just test` (linkml-run-examples, | |
| # json + yaml) but is git-ignored -- archive it from one matrix leg | |
| # so it's inspectable without needing a local checkout. ttl is | |
| # deliberately not requested here: it currently fails partway | |
| # through the example set on a pre-existing linkml_runtime bug | |
| # (rdflib_dumper mishandling certain CURIEs), unrelated to schema | |
| # content -- not a "major error" worth blocking CI over, but not | |
| # worth generating broken output for either. | |
| - name: Upload example validation output | |
| if: matrix.python-version == '3.13' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: example-outputs | |
| path: examples/output/ | |
| retention-days: 30 |