Skip to content

Bump MSTest.TestFramework from 3.6.0 to 3.6.1 #120

Bump MSTest.TestFramework from 3.6.0 to 3.6.1

Bump MSTest.TestFramework from 3.6.0 to 3.6.1 #120

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"'