We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1001f3e commit 549fc6eCopy full SHA for 549fc6e
1 file changed
.github/workflows/actions/python-poetry/action.yml
@@ -16,7 +16,7 @@ runs:
16
run: |
17
python3 -m pip install \
18
"poetry==${{ inputs.poetry_version }}.*" \
19
- "poetry-dynamic-versioning<=0.17.1"
+ "poetry-dynamic-versioning"
20
python3 -m pip install --upgrade requests
21
22
- name: 🐍 Set up Python
@@ -35,6 +35,8 @@ runs:
35
36
poetry install
37
poetry lock --check
38
+ [ "$(poetry version -s)" != "0.0.0" ] \
39
+ || { echo "Versioning broken"; exit 1; }
40
41
- name: 🪝 Cache pre-commit hooks
42
uses: actions/cache@v3
0 commit comments