Pester 4.10.1

pull/2/head
Maxim Lobanov 5 years ago
parent 064353c9a4
commit 3703ec332f

@ -8,12 +8,16 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@master 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 - name: Run tests
shell: pwsh shell: pwsh
run: | run: |
Install-Module Pester -Force -Scope CurrentUser
Install-Module Assert -Force -Scope CurrentUser
Import-Module Pester Import-Module Pester
Import-Module Assert Import-Module Assert
Invoke-Pester -CI Invoke-Pester -CI
Loading…
Cancel
Save