Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GitHub Actions for running [CodSpeed](https://codspeed.io) in your CI.
# Usage

```yaml
- uses: CodSpeedHQ/action@v4
- uses: CodSpeedHQ/action@v5
with:
# [OPTIONAL]
# The command used to run your CodSpeed benchmarks
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: pip install -r requirements.txt

- name: Run benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: pytest tests/ --codspeed
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
run: cargo codspeed build

- name: Run the benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: cargo codspeed run
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
run: npm install

- name: Run benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: npx vitest bench
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp-cmake-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
make -j

- name: Run C++ benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: ./path/to/built/benchmark
2 changes: 1 addition & 1 deletion examples/go-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
go-version: stable

- name: Run Go benchmarks
uses: CodSpeedHQ/action@main
uses: CodSpeedHQ/action@v5
with:
mode: walltime # go only supports walltime mode
run: go test -bench=. -benchtime=5s
2 changes: 1 addition & 1 deletion examples/nodejs-typescript-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: npm install

- name: Run benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: node -r esbuild-register benches/bench.ts
2 changes: 1 addition & 1 deletion examples/python-pytest-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: pip install -r requirements.txt

- name: Run benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: pytest tests/ --codspeed
2 changes: 1 addition & 1 deletion examples/rust-cargo-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: cargo codspeed build

- name: Run the benchmarks
uses: CodSpeedHQ/action@v4
uses: CodSpeedHQ/action@v5
with:
mode: simulation
run: cargo codspeed run
Loading