Skip to content

Manual Merge of PR #41 into staging. #61

Manual Merge of PR #41 into staging.

Manual Merge of PR #41 into staging. #61

Workflow file for this run

name: dotNet
on:
push:
branches: [ "main", "release", "staging" ]
pull_request:
branches: [ "main", "release", "staging" ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- 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