add perf tests #138
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build and Test' | |
on: [push, pull_request_target] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release --no-restore | |
- name: Unit tests | |
run: dotnet test -c Release --no-restore --no-build -v=normal --collect:"XPlat Code Coverage" | |
- name: Performance tests | |
run: dotnet test -c Release --no-restore --no-build -v=normal --filter TestCategory="PerfTests" | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload NoStringEvaluating nuget packages artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: service-nuget-packages | |
path: bin/NoStringEvaluating/Release/*.nupkg | |
retention-days: 1 | |
- name: Upload NoStringEvaluating.DI nuget packages artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: service-di-nuget-packages | |
path: bin/NoStringEvaluating.Extensions.Microsoft.DependencyInjection/Release/*.nupkg | |
retention-days: 1 | |
- name: Upload performance tests artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: performance-tests | |
path: bin/NoStringEvaluating.Tests/Release/PerformanceTestsResults/PerformanceTests.txt | |
retention-days: 90 | |