Skip to content

Build fix

Build fix #52

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- "docs/**"
pull_request:
paths-ignore:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v2.1.0
with:
dotnet-version: "8.0.x"
- name: Build
run: |
dotnet workload restore
dotnet build --configuration Release