Skip to content

Update dawidd6/action-download-artifact action to v6 #1772

Update dawidd6/action-download-artifact action to v6

Update dawidd6/action-download-artifact action to v6 #1772

Workflow file for this run

name: "🏄 Performance"
on:
push:
tags: ["v[1-9]+.[0-9]+.[0-9]"]
pull_request:
branches: ["main"]
types: ["opened", "synchronize", "reopened"]
jobs:
test-performance:
name: 🏇 Performance Tests
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: 🔧 Use .NET Core 8.0 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: 🔬 Test
uses: nick-fields/retry@v3
with:
timeout_minutes: 20
max_attempts: 5
retry_on: error
command: "dotnet test ./test/Tethos.PerformanceTests/\
Tethos.PerformanceTests.csproj
--configuration Release
--logger trx
--results-directory ./coverage
-- xunit.parallelizeAssembly=true"
- name: 📚 Artifact Test Results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: performance-test-results
path: coverage/*.trx