Add check to verify poetry.toml (#4794)

# Add poetry check to github action

Check poetry toml file during tests for errors
This commit is contained in:
Eugene Yurtsev
2023-05-16 11:53:06 -04:00
committed by GitHub
parent f5a476fdd4
commit 3ecd7c9641
3 changed files with 7 additions and 3 deletions

View File

@@ -50,6 +50,11 @@ runs:
- run: pipx install poetry==${{ inputs.poetry-version }} --python python${{ inputs.python-version }}
shell: bash
- name: Check Poetry File
shell: bash
run: |
poetry check
- name: Check lock file
shell: bash
run: |