Skip to content

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0 #219

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0 #219

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
shell: pwsh
jobs:
build-and-test:
name: build-and-test on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
automerge:
needs: [build-and-test]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]