Skip to content

Merge pull request #127 from ModShardTeam/ImprovingPerformance #126

Merge pull request #127 from ModShardTeam/ImprovingPerformance

Merge pull request #127 from ModShardTeam/ImprovingPerformance #126

Workflow file for this run

name: Build + Test
on:
workflow_dispatch:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.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