@ -18,19 +18,19 @@ jobs:
# - os: ubuntu-latest
# framework: netcoreapp2.1
# runtime: -x64
# codecov: $false
# codecov: false
- os: windows-latest
framework: netcoreapp2.1
runtime: -x64
codecov: $true
codecov: true
framework: net472
codecov: $false
codecov: false
runtime: -x86
runs-on: ${{ matrix.options.os }}
@ -6,10 +6,10 @@ param(
[Parameter(Mandatory, Position = 2)]
[string]$platform,
[Parameter(Mandatory, Position = 3)]
[bool]$codecov
[string]$codecov
)
if ($codecov -eq $TRUE) {
if ($codecov -eq 'true') {
# xunit doesn't understand the CollectCoverage params
dotnet clean -c Debug