chore: update Fusion #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Avoid shallow clone for Nerdbank.GitVersioning | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Install .NET workloads | |
run: dotnet workload install wasm-tools aspire | |
- uses: dotnet/nbgv@master | |
id: nbgv | |
with: | |
setAllVars: true | |
setCommonVars: true | |
- name: Restore NuGet Packages & Tools | |
run: dotnet restore | |
- name: Build | |
run: dotnet build |