Skip to content

added performance tests #30

added performance tests

added performance tests #30

Workflow file for this run

name: PR Build and Test
on:
pull_request:
branches:
- main
- develop
permissions:
contents: read
concurrency:
group: pr-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup GitVersion
uses: gittools/actions/gitversion/setup@v4
with:
versionSpec: 6.x
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v4
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /p:Version=${{ steps.gitversion.outputs.semVer }}
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal