Skip to content

Commit

Permalink
Add smoke build content
Browse files Browse the repository at this point in the history
  • Loading branch information
networkfusion committed Jun 14, 2024
1 parent be53542 commit 6b7e1dd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/smoketest-build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6b7e1dd

Please sign in to comment.