Skip to content

Fix PolySharp reference #2

Fix PolySharp reference

Fix PolySharp reference #2

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- 'main'
paths-ignore:
- '.gitignore'
- 'LICENSE.md'
- 'README.md'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
# - name: Test
# run: dotnet test -c Release --no-build --verbosity normal