Skip to content

chore(deps): bump MSTest.TestFramework from 3.7.0 to 3.7.1 #224

chore(deps): bump MSTest.TestFramework from 3.7.0 to 3.7.1

chore(deps): bump MSTest.TestFramework from 3.7.0 to 3.7.1 #224

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration release --verbosity minimal
- name: Test
run: dotnet test --no-build --configuration release --verbosity minimal