Check poetry lock file (#4740)

# Check poetry lock file on CI

This PR checks that the lock file is up to date using poetry lock
--check.

As part of this PR, a new lock file was generated.
dynamic_agent_tools
Eugene Yurtsev 1 year ago committed by GitHub
parent 09587a3201
commit 99cfe71cd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,6 +31,9 @@ jobs:
poetry-version: "1.4.2"
cache-key: ${{ matrix.test_type }}
install-command: |
echo "Check the poetry lock file. If this fails use poetry to " \
"update the lock file: `poetry update` or refresh it `poetry lock --no-update`"
poetry lock --check
if [ "${{ matrix.test_type }}" == "core" ]; then
echo "Running core tests, installing dependencies with poetry..."
poetry install

Loading…
Cancel
Save