Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ubuntuegor committed Apr 12, 2024
2 parents 4b19e49 + fd4eb3f commit a74cd63
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: nuget/setup-nuget@v2
- name: Setup VSTest.console.exe
uses: darenm/[email protected]
- name: Restore dependencies
run: nuget restore FluentInfo.sln
- name: Build Solution
run: msbuild.exe FluentInfo.sln /p:platform="x64" /p:configuration="Release" /p:PublishReadyToRun=false
- name: Run Tests
run: vstest.console.exe .\FluentInfoTest\bin\x64\Release\net8.0-windows\FluentInfoTest.dll

0 comments on commit a74cd63

Please sign in to comment.