Correct various xUnit warnings relating to task cancellation in tests. #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Setup Task | |
uses: arduino/setup-task@v2 | |
with: | |
version: 3.x | |
- name: Run unit tests and produce a coverage report | |
run: task cover | |
env: | |
CONFIGURATION: ${{ matrix.configuration }} | |
- name: Publish a self-container version of the app and create the installer | |
run: task distribute | |
env: | |
CONFIGURATION: ${{ matrix.configuration }} | |
- name: Upload coverage | |
if: ${{ matrix.configuration == 'Release' }} | |
uses: codecov/codecov-action@v5 | |
with: | |
directory: ./.coverage | |
files: Cobertura.xml | |
fail_ci_if_error: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TotalMixVC ${{ matrix.configuration }} Setup | |
path: artifacts/*.exe | |
if-no-files-found: error |