Skip to content

Merge pull request #1 from domsleee/bugfix/workstation-domain-trust-r… #10

Merge pull request #1 from domsleee/bugfix/workstation-domain-trust-r…

Merge pull request #1 from domsleee/bugfix/workstation-domain-trust-r… #10

Workflow file for this run

name: main build
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
platform: [windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Dotnet Installation Info
run: dotnet --info
- name: Build
run: dotnet build
- name: Test
run: dotnet test --no-build --verbosity normal