Skip to content

Commit

Permalink
Merge pull request #33 from ParkMyCar/ci/benchmarks
Browse files Browse the repository at this point in the history
chore: Add GitHub workflow that runs benchmarks
  • Loading branch information
ParkMyCar authored Dec 23, 2021
2 parents 530dbcb + a049ff6 commit a2f7dc7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
workflow_dispatch:

name: Benchmarks

env:
RUSTFLAGS: "-D warnings"

jobs:
# TODO: Figure out how to visualize these benchmarks somewhere
benchmarks:
name: cargo bench
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: bench

0 comments on commit a2f7dc7

Please sign in to comment.