diff --git a/.github/workflows/smoketest-build.yml b/.github/workflows/smoketest-build.yml index e69de29b..58e58619 100644 --- a/.github/workflows/smoketest-build.yml +++ b/.github/workflows/smoketest-build.yml @@ -0,0 +1,28 @@ +name: Smoke-Build + +on: + pull_request: + branches: + - test-pipeline-build +jobs: + build: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.0.x' + + - name: Restore NuGet packages + run: dotnet restore + + - name: Build solution + run: dotnet build --configuration Release