From 3d0a7b3e34f4078440c2113c0bf2d7034050628c Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 24 Jul 2024 21:39:31 +0300 Subject: [PATCH] github: Add `cargo bench` to CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's run `cargo bench` just to make sure we don't keep breaking it all the time. As a follow up, it would be cool to upload the results to Nyrkiƶ, for example. --- .github/workflows/rust.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fd231cb9c..7c1f5f528 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -38,6 +38,13 @@ jobs: run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - run: wasm-pack build --target nodejs bindings/wasm + bench: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Bench + run: cargo bench + test-limbo: runs-on: ubuntu-latest steps: