Skip to content

Try removing no-build option #8

Try removing no-build option

Try removing no-build option #8

Workflow file for this run

name: Benchmark
on:
push:
branches: [ "master" ]
schedule:
# 1am UTC
- cron: "0 1 * * *"
permissions:
# deployments permission to deploy GitHub pages website
deployments: write
# contents permission to update benchmark contents in gh-pages branch
contents: write
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Run benchmarks
run: dotnet run -c Release --project Html2Text.PerfTests
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'benchmarkdotnet'
output-file-path: BenchmarkDotNet.Artifacts/results/Html2Text.PerfTests.PageBenchmarks-report-full-compressed.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true