From 74ad4abda582b5e6814eaa9dc036b68bc5a131c3 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Thu, 16 Jul 2020 18:57:23 +0300 Subject: [PATCH] Fix typo in the test.yml --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0e1aae2..cc23018a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,8 +81,8 @@ jobs: - name: Validate version run: | $pythonVersion = (python --version) - if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){ - Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}" + if ("Python 3.9.0b4" -ne "$pythonVersion"){ + Write-Host "The current version is $pythonVersion; expected version is 3.9.0b4" exit 1 } $pythonVersion