Skip to content

Bump MSTest.TestFramework from 3.0.2 to 3.1.1 in /Source (#17) #76

Bump MSTest.TestFramework from 3.0.2 to 3.1.1 in /Source (#17)

Bump MSTest.TestFramework from 3.0.2 to 3.1.1 in /Source (#17) #76

name: build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
debug-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Clean
run: dotnet clean --configuration Debug && dotnet nuget locals all --clear
working-directory: Source
- name: Install dependencies
run: dotnet restore
working-directory: Source
- name: Build
run: dotnet build --configuration Debug --no-restore
working-directory: Source
- name: Test
run: dotnet test --configuration Debug --no-build --verbosity normal
working-directory: Source
release-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
working-directory: Source
- name: Install dependencies
run: dotnet restore
working-directory: Source
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: Source
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal
working-directory: Source