Skip to content

chore(deps): Bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0 #154

chore(deps): Bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0

chore(deps): Bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0 #154

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '3.1.x', '6.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal