Bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0 #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build | |
run: | | |
dotnet build --configuration Release | |
- name: Test | |
run: | | |
dotnet test --configuration Release | |
- name: Formatting | |
run: | | |
dotnet tool install -g dotnet-format | |
dotnet format --verify-no-changes |