From 9361b81ae1eb9e5a66ac3b5bed58807447beba63 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Tue, 7 Feb 2023 12:55:59 -0800 Subject: [PATCH] Print Python package versions used in CI --- .github/actions/setup/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 753de6c3..2b1fb087 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -20,6 +20,9 @@ runs: - name: Install Python dependencies shell: bash run: pipenv install --dev + - name: Print installed dependency versions + shell: bash + run: pipenv graph - uses: actions/setup-node@v3 with: node-version: 16