run benchmarks on main branch every day #279
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: run benchmarks on main branch every day | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # run on default branch every day | |
jobs: | |
publish: | |
uses: ./.github/workflows/benchmark.yml | |
secrets: inherit | |
with: | |
publish: true | |
test-flags: "-timeout 50m" |