We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984e4b2 commit 652262dCopy full SHA for 652262d
.github/workflows/test-upstream.yaml
@@ -43,6 +43,13 @@ jobs:
43
path: linkml-runtime
44
fetch-depth: 0
45
46
+ - name: Ensure tags if not run from main repo
47
+ if: github.repository != 'linkml/linkml-runtime'
48
+ working-directory: linkml-runtime
49
+ run: |
50
+ git remote add upstream https://github.com/linkml/linkml-runtime
51
+ git fetch upstream --tags
52
+
53
- name: set up python
54
uses: actions/setup-python@v5
55
with:
@@ -54,6 +61,9 @@ jobs:
61
virtualenvs-create: true
62
virtualenvs-in-project: true
56
63
64
+ - name: Install dynamic versioning plugin
65
+ run: poetry self add "poetry-dynamic-versioning[plugin]"
66
57
67
- name: Load cached venv
58
68
id: cached-poetry-dependencies
59
69
uses: actions/cache@v3
0 commit comments