Skip to content

Merge pull request #75 from QAppsSoft/dependabot/nuget/main/ReactiveU… #121

Merge pull request #75 from QAppsSoft/dependabot/nuget/main/ReactiveU…

Merge pull request #75 from QAppsSoft/dependabot/nuget/main/ReactiveU… #121

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release