Skip to content

chore: bump MSTest.TestFramework from 3.3.1 to 3.4.0 (#649) #566

chore: bump MSTest.TestFramework from 3.3.1 to 3.4.0 (#649)

chore: bump MSTest.TestFramework from 3.3.1 to 3.4.0 (#649) #566

Workflow file for this run

name: Build & Test
on:
push:
paths:
- 'src/**'
- '.github/workflows/**'
branches: [ main ]
pull_request:
paths:
- 'src/**'
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: ./src
run: |
dotnet test --configuration Release --no-restore --no-build --verbosity normal