Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ 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"]
Expand Down Expand Up @@ -64,3 +68,19 @@ jobs:

- 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
Binary file modified docs/assets/coremeta4cat_vocabulary.xlsx
Binary file not shown.
Loading
Loading