From 3703ec332f055eb55733edf4cb431fa1b93309c8 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 1 Jun 2020 13:58:13 +0300 Subject: [PATCH] Pester 4.10.1 --- .github/workflows/common_tests.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/common_tests.yml b/.github/workflows/common_tests.yml index d85b0bb..833e5c5 100644 --- a/.github/workflows/common_tests.yml +++ b/.github/workflows/common_tests.yml @@ -8,12 +8,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@master - + + - name: Install Pester + shell: pwsh + run: | + Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1 + Install-Module Assert -Force -Scope CurrentUser + - name: Run tests shell: pwsh run: | - Install-Module Pester -Force -Scope CurrentUser - Install-Module Assert -Force -Scope CurrentUser Import-Module Pester Import-Module Assert Invoke-Pester -CI \ No newline at end of file