Skip to content

Bump MSTest.TestAdapter from 3.6.1 to 3.6.2 #140

Bump MSTest.TestAdapter from 3.6.1 to 3.6.2

Bump MSTest.TestAdapter from 3.6.1 to 3.6.2 #140

Workflow file for this run

name: "Run tests"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
jobs:
test:
name: "Run tests"
strategy:
matrix:
os:
#- "windows-latest"
- "ubuntu-latest"
#- "macos-latest"
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Setup dotnet"
uses: "actions/setup-dotnet@v4"
with:
dotnet-version: '8'
- name: "Check format"
run: 'dotnet format --verify-no-changes'
- name: "Run test"
run: 'dotnet test --collect "XPlat Code Coverage"'