mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
23 lines
418 B
YAML
23 lines
418 B
YAML
|
name: Benchmark (Linux)
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
check_benchmark:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
|
||
|
- 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
|