Browse Source

Use pwsh for scripts

pull/1061/head
James Jackson-South 6 years ago
parent
commit
92e5d5c4b4
  1. 2
      .github/workflows/build-and-test.yml

2
.github/workflows/build-and-test.yml

@ -56,10 +56,12 @@ jobs:
- name: Test no Coverage
if: matrix.options.cover != 'True'
shell: pwsh
run: dotnet test **/*tests/*.csproj -c Release -f "${{matrix.opt.framework}}" -r "${{matrix.opt.runtime}}" --no-build --filter Sandbox
- name: Test with Coverage
if: matrix.options.cover == 'True'
shell: pwsh
run: dotnet test **/*tests/*.csproj -c Release -f "${{matrix.opt.framework}}" -r "${{matrix.opt.runtime}}" --no-build --filter Sandbox /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Update Codecov

Loading…
Cancel
Save