Skip to content

Bump MSTest.TestAdapter from 3.3.1 to 3.4.0 #266

Bump MSTest.TestAdapter from 3.3.1 to 3.4.0

Bump MSTest.TestAdapter from 3.3.1 to 3.4.0 #266

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: BuildAndRunTests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build the application
run: dotnet build --no-restore --configuration ${{ matrix.configuration }}
- name: Execute unit tests
run: dotnet test --verbosity normal