1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00
actix-web/.github/workflows/bench.yml

30 lines
541 B
YAML
Raw Normal View History

2021-02-07 21:33:53 +01:00
name: Benchmark
on:
push:
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
check_benchmark:
runs-on: ubuntu-latest
steps:
2023-03-12 00:19:03 +01:00
- uses: actions/checkout@v3
- 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 15:33:25 +02:00
args: --bench=server -- --sample-size=15