From 071a3a1e0e6d81425d3cae8901410151daf07f55 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 7 Mar 2022 08:58:22 +0200 Subject: [PATCH] CI: combine version steps --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d8472e0e..eaf451632 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,8 +34,10 @@ jobs: with: python-version: ${{ matrix.python }} - - run: python --version - - run: pip --version + - name: Print versions + run: | + python --version + pip --version - name: Install Python dependencies run: pip install -r requirements.txt