Skip to content

Bump the mstest-dependencies group with 1 update #299

Bump the mstest-dependencies group with 1 update

Bump the mstest-dependencies group with 1 update #299

Workflow file for this run

name: Continuous Integration
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Restore
run: dotnet restore --verbosity minimal
- name: Build
run: dotnet build --no-restore --configuration release --verbosity minimal
- name: Test
run: dotnet test --no-build --configuration release --verbosity minimal --framework net8.0