Skip to content

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.10.0 in /csharp/src #34

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.10.0 in /csharp/src

Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.10.0 in /csharp/src #34

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Test C# Implementation in .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./csharp/src
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal