From b4cc5b633f6171c6c345c881336d444f30c5ee60 Mon Sep 17 00:00:00 2001 From: RobertoRoos Date: Wed, 13 May 2026 18:51:19 +0200 Subject: [PATCH] Trying out CI build --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..15d8731 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: .NET Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v6 + + - uses: actions/setup-dotnet@v5 + with: + dotnet-version: 8.0.x + + - uses: microsoft/setup-msbuild@v3 + + - run: dotnet build