2021-07-23 11:04:34 +03:00
|
|
|
name: Benchmark
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
2023-05-30 04:00:44 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'demo/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'homebrew-formula/**'
|
2021-07-23 11:04:34 +03:00
|
|
|
push:
|
2023-06-04 05:50:55 +03:00
|
|
|
branches: [main]
|
2023-05-30 04:00:44 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'demo/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'homebrew-formula/**'
|
2022-10-31 23:28:21 +03:00
|
|
|
workflow_dispatch:
|
2021-07-23 11:04:34 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check_benchmark:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-05-27 15:00:45 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-07-23 11:04:34 +03:00
|
|
|
|
|
|
|
- name: Check benchmark
|
2022-10-26 12:52:31 +03:00
|
|
|
run: cargo bench
|