Skip to content
This repository has been archived by the owner on Apr 27, 2024. It is now read-only.

Develop

Develop #254

Workflow file for this run

name: .NET Build and Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: Restore NuGet packages
run: dotnet restore test/**/*.csproj
- name: Build
run: dotnet build test/**/*.csproj
- name: Test
run: dotnet test test/**/*.csproj