ci: use codspeed mode input#566
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d8d481a4eb
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| mode: simulation | ||
| run: cargo codspeed run | ||
| mode: instrumentation |
There was a problem hiding this comment.
Remove the duplicate CodSpeed mode key
This with: block now defines mode twice, so parsers that accept duplicate YAML keys keep/redefine the later value (mode: instrumentation) and the action is not actually invoked with the new simulation value added here. The pinned CodSpeed action defines mode as the required input and marks instrumentation as the deprecated legacy name for simulation (see CodSpeedHQ/action at 63f3e98.../action.yml), so change the existing mode entry instead of adding a second one.
Useful? React with 👍 / 👎.
Replaces the CodSpeed
simulationinput withmode: simulation.