Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

build(deps): bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.6.0 (#92) #23

build(deps): bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.6.0 (#92)

build(deps): bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.6.0 (#92) #23

Workflow file for this run

name: dotnet
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["6.0.x"]
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal