From 328ad3284b26ec3dc47b040e3799978277df4e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Adamczak?= Date: Mon, 29 Jan 2024 19:56:46 +0100 Subject: [PATCH] Unify GitHub Actions install steps --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6853ae..5350128 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,8 +118,11 @@ jobs: cache: "pip" cache-dependency-path: "requirements/*.txt" - - name: "Update pip and install Nox" - run: "python -m pip install pip nox -c requirements/constraints.txt" + - name: "Install pip and wheel" + run: "python -m pip install --upgrade pip wheel -c requirements/constraints.txt" + + - name: "Install Nox" + run: "python -m pip install nox -c requirements/constraints.txt" - name: "Run '${{ matrix.nox_session }}' Nox session" run: "nox -s ${{ matrix.nox_session }}"