Skip to content

Update README.md

Update README.md #13

# 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: Build & Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run NUnit Tests
run: dotnet test --no-build --verbosity normal Tests/ > testresults.txt 2>&1
- name: Upload Test Results
uses: actions/upload-artifact@v2
with:
name: test-results
path: testresults.txt