Skip to content

Only smoketest windows to start. #6

Only smoketest windows to start.

Only smoketest windows to start. #6

name: Smoke-Build
on:
push:
branches:
- test-pipeline-build
# pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest] #, ubuntu-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