misc improvements

This commit is contained in:
Mikhail Koliada
2022-01-14 12:03:40 +03:00
parent 4a2af81ac1
commit 3792b6282a

View File

@ -20,7 +20,7 @@ on:
- 'main' - 'main'
env: env:
VERSION: ${{ github.event.inputs.VERSION}} VERSION: ${{ github.event.inputs.VERSION || '3.9.9' }}
defaults: defaults:
run: run:
shell: pwsh shell: pwsh
@ -48,7 +48,7 @@ jobs:
arch: 'x86' arch: 'x86'
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
env: env:
ARTIFACT_NAME: python-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-${{ matrix.arch }} ARTIFACT_NAME: python-${{ github.event.inputs.VERSION || '3.9.9' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps: steps:
- name: Check out repository code - name: Check out repository code
@ -91,7 +91,7 @@ jobs:
arch: 'x86' arch: 'x86'
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
env: env:
ARTIFACT_NAME: python-${{ github.event.inputs.VERSION }}-${{ matrix.platform }}-${{ matrix.arch }} ARTIFACT_NAME: python-${{ github.event.inputs.VERSION || '3.9.9' }}-${{ matrix.platform }}-${{ matrix.arch }}
steps: steps:
- name: Check out repository code - name: Check out repository code
@ -145,7 +145,6 @@ jobs:
} }
- name: Run tests - name: Run tests
shell: pwsh
run: | run: |
Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1 Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1
Import-Module Pester Import-Module Pester
@ -156,12 +155,11 @@ jobs:
Platform="${{ matrix.platform }}"; Platform="${{ matrix.platform }}";
} }
} }
$Result = Invoke-Pester -PassThru -Script $pesterParams -OutputFile "test_results.xml" -OutputFormat NUnitXml $Result = Invoke-Pester -PassThru -Script $pesterParams
if ($Result.FailedCount -gt 0) { if ($Result.FailedCount -gt 0) {
$host.SetShouldExit($Result.FailedCount) $host.SetShouldExit($Result.FailedCount)
exit $Result.FailedCount exit $Result.FailedCount
} }
working-directory: ${{ github.workspace }}/tests working-directory: ${{ github.workspace }}/tests
publish_release: publish_release: