Skip to content

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #261

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #261

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET for building
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
- name: Setup .NET for testing
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.406
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release
- name: Formatting
run: |
dotnet format --verify-no-changes