mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 03:17:42 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
590 B
YAML
27 lines
590 B
YAML
name: Benchmarks
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
name: Run benchmarks
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CRITERION_TOKEN: ${{ secrets.CRITERION_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run benchmarks
|
|
run: |
|
|
# run benchmarks and save baseline to "criterion.dev.temp"
|
|
cargo bench -- --verbose --noplot
|
|
- name: Upload benchmarks
|
|
run: |
|
|
# upload the file
|
|
bash <(curl -s https://criterion.dev/bash)
|