Skip to content

Build(deps): Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #345

Build(deps): Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0

Build(deps): Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #345

Workflow file for this run

name: .NET Build
on:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
- run: echo ${{matrix.os}}
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --logger GitHubActions