Skip to content

Add smoke build content #3

Add smoke build content

Add smoke build content #3

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

Check failure on line 17 in .github/workflows/smoketest-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/smoketest-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- 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