Skip to content

Merge branch 'main' into vNext #11

Merge branch 'main' into vNext

Merge branch 'main' into vNext #11

Workflow file for this run

name: .NET CI
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Install the .NET workload
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build App
run: dotnet build -c Release
- name: Test App
run: dotnet test