build(deps-dev): bump commitizen from 4.1.0 to 4.1.1 #4
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: Benchmark Compare | |
on: | |
pull_request: | |
branches: ["*"] | |
jobs: | |
bench: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
architecture: x64 | |
- name: Set Cache | |
uses: actions/cache@v4 | |
id: cache # name for referring later | |
with: | |
path: .venv/ | |
# The cache key depends on poetry.lock | |
key: ${{ runner.os }}-cache-${{ hashFiles('poetry.lock') }}-313 | |
restore-keys: | | |
${{ runner.os }}-cache- | |
${{ runner.os }}- | |
- name: Install Dependencies | |
# if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
python -m pip install -U pip poetry | |
poetry env use python3.13 | |
poetry config --local virtualenvs.in-project true | |
poetry install | |
- name: Benchmark regression test | |
run: | | |
./scripts/bench-compare |