2021-02-07 20:33:53 +00:00
|
|
|
name: Benchmark
|
2020-01-22 21:23:53 +00:00
|
|
|
|
2020-07-21 23:28:33 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-01-22 21:23:53 +00:00
|
|
|
|
2022-11-04 00:42:22 +00:00
|
|
|
permissions:
|
2023-03-15 13:32:55 +00:00
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2022-11-04 00:42:22 +00:00
|
|
|
|
2020-01-22 21:23:53 +00:00
|
|
|
jobs:
|
|
|
|
check_benchmark:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-03-11 23:19:03 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-01-22 21:23:53 +00:00
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Check benchmark
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: bench
|
2020-05-20 13:33:25 +00:00
|
|
|
args: --bench=server -- --sample-size=15
|