action
action copied to clipboard
Github Actions for running CodSpeed in your CI
The past few releases didn't update the changelog, could you please continue doing that or remove the file (in favor of GitHub Releases)? Thank you!
I'm trying to benchmark a NodeJS app which calls into a NodeJS native module (built from Rust via `napi-rs`). CodSpeed's instrumentation appears to slow down the app very considerably, making...
[OXC Javascript compiler](https://github.com/oxc-project/oxc) is using CodSpeed for measuring performance. For a performance-focused project like OXC, CodSpeed is absolutely amazing. However, running the benchmarks is currently by far the project's slowest...
Should fix #82
In https://github.com/datalad/datalad-next/pull/644 I have added benchmarks and a codspeed Github action. Benchmarks run fine locally and in the action via `python -m pytest --codspeed datalad_next` (see "Debug" step). However, when...
I have a project that requires dependencies from conda. As such, I use the [setup-miniconda action](https://github.com/conda-incubator/setup-miniconda) to create a conda environment and install dependencies. Unfortunately, that requires [specifying the `shell`](https://github.com/conda-incubator/setup-miniconda#example-1-basic-usage)...
Hello there :wave: Thanks for the great work! I just tried to add Codspeed to my existing test suite (https://github.com/frgfm/torch-cam/pull/270) and following the documentation, I used the v2 action. However...
Tested using a Nix shell [here](https://github.com/DuskSystems/wayfind/blob/6db01a22a39dc2c7bb6ca82b1a2900fd782e1d54/.github/workflows/codspeed.yml). Resolves #65
## Use Case > I know this is probably not a supported use-case We want to benchmark the test in a real-browser environment to test closer to what the user...
If I have a group of benchmarks like this: ```ts describe('foo', () => { bench('with object', () => {…}) bench('with array', () => {…}) }) ``` …I would expect the...