Skip to content

Bump MSTest.TestFramework from 3.2.0 to 3.2.1 #19

Bump MSTest.TestFramework from 3.2.0 to 3.2.1

Bump MSTest.TestFramework from 3.2.0 to 3.2.1 #19

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
env:
solutionFile: src/AgiPlayer.sln
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'
- name: Clean
run: dotnet clean ${{env.solutionFile}} --configuration Release && dotnet nuget locals all --clear
- name: Build
run: dotnet build ${{env.solutionFile}} --configuration Release
- name: Test
run: dotnet test ${{env.solutionFile}} --no-restore --verbosity normal