summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook.git@proton.me>2023-05-08 11:32:13 -0500
committerJordan Cook <jordan.cook.git@proton.me>2023-05-08 11:32:25 -0500
commit3f43383c71df06ceea90299308474c384c7824d5 (patch)
tree789cd50bb3910d8868ec3abb5544c113819c8b52
parent469d91f460ec9dff42aa7b34f7c9dd11ca34f411 (diff)
downloadrequests-cache-3f43383c71df06ceea90299308474c384c7824d5.tar.gz
Check poetry lockfile for unexpected dependencies before deploying
-rw-r--r--.github/workflows/deploy.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index dec2bef..adb1e88 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -147,6 +147,8 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: |
poetry add requests@${{ matrix.requests-version }} --lock
+ poetry lock --check
+ poetry lock --no-update
poetry install -v -E all
# Run tests