Skip to content

Bump MSTest.TestFramework from 3.6.3 to 3.8.0 #215

Bump MSTest.TestFramework from 3.6.3 to 3.8.0

Bump MSTest.TestFramework from 3.6.3 to 3.8.0 #215

Workflow file for this run

name: Testing
on: [push]
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
jobs:
test:
name: Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Cache NuGet
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Building
run: dotnet build -c Debug
- name: Run Tests
run: dotnet test --no-build