Add TryExtend
trait
#3696
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: benches | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
# `workflow_dispatch` allows CodSpeed to trigger backtest | |
# performance analysis in order to generate initial data. | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}-benches | |
cancel-in-progress: true | |
jobs: | |
benchmarks: | |
# No support for 24.04, see https://github.com/CodSpeedHQ/runner/issues/42 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rust-src | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
. | |
pyo3-benches | |
continue-on-error: true | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-codspeed | |
- name: Install nox | |
run: pip install nox | |
- name: Run the benchmarks | |
uses: CodSpeedHQ/action@v3 | |
with: | |
run: nox -s codspeed | |
token: ${{ secrets.CODSPEED_TOKEN }} |