Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: build and test
on:
push:
branches: [ "main" ]
pull_request:
types: [opened, synchronize, reopened]
env:
DOTNET_VERSION: '7.0.x' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: src