From db17d2b42279675060f4aa9fbb62e4cd01bc8a5e Mon Sep 17 00:00:00 2001 From: sanjaymjoshi <39056381+sanjaymjoshi@users.noreply.github.com> Date: Sun, 14 May 2023 18:48:51 -0400 Subject: [PATCH] Update test.yml - Add pipenv graph - Set python to 3.10 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 773e52f..4e9d535 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,12 +15,13 @@ jobs: - name: Setup Python uses: actions/setup-python@v1 with: - python-version: 3.9 + python-version: 3.10 - name: Install dependencies with pipenv run: | pip install pipenv pipenv install --deploy --dev + pipenv graph - run: pipenv run isort --recursive --diff . - run: pipenv run black --check .