Skip to content

Add ability to test multiple OSes #21

Add ability to test multiple OSes

Add ability to test multiple OSes #21

name: Smoke-Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: '0' # Allow all history to be fetched (required for versioning).
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build solution
run: dotnet build