Skip to content

csharp: sync v1.1.0 from John-Paul-R/FlexVer #9

csharp: sync v1.1.0 from John-Paul-R/FlexVer

csharp: sync v1.1.0 from John-Paul-R/FlexVer #9

Workflow file for this run

name: csharp / .NET
on:
workflow_dispatch:
push:
paths:
- 'csharp/**'
pull_request:
paths:
- 'csharp/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./csharp
- name: Build
run: dotnet build --no-restore
working-directory: ./csharp
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: ./csharp