mirror of https://github.com/fafhrd91/actix-web
33 lines
659 B
YAML
33 lines
659 B
YAML
# This workflow is managed by gh actions-lock.
|
|
|
|
name: Benchmark
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check_benchmark:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup install nightly
|
|
rustup override set nightly
|
|
|
|
- name: Check benchmark
|
|
run: cargo bench --bench=server -- --sample-size=15
|