Skip to content

Merge remote-tracking branch 'remotes/origin/main' #30

Merge remote-tracking branch 'remotes/origin/main'

Merge remote-tracking branch 'remotes/origin/main' #30

Workflow file for this run

name: .NET 8 Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
configuration: [Debug]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build src/MDK.SDK.NET.csproj -c $env:Configuration
env:
Configuration: ${{ matrix.configuration }}