Skip to content

Performance Tests

Performance Tests #1

Workflow file for this run

name: Performance Tests
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-and-perftest:
runs-on: windows-latest # Build on Windows to ensure .NET Framework targets
steps:
- uses: actions/checkout@v4
- name: Run build
run: ./Build.ps1 -SkipTests
shell: pwsh
- name: Run performance tests
run: ./RunPerfTests.ps1
shell: pwsh