⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content

Update GH Action pins #424

Update GH Action pins

Update GH Action pins #424

Workflow file for this run

name: codspeed
on:
push:
branches:
- "master"
pull_request:
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:
jobs:
benchmarks:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.9"
- name: Get full Python version
id: full-python-version
run: |
echo version=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") >> $GITHUB_OUTPUT
- name: Install poetry
run: |
pipx install poetry>=2
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: Install dependencies
run: poetry install --only test --only benchmark --only build -vvv --no-root
- name: Install pendulum and check extensions
run: |
poetry run pip install -e . -vvv
poetry run python -c 'import pendulum._pendulum'
- name: Run benchmarks
uses: CodSpeedHQ/action@dbda7111f8ac363564b0c51b992d4ce76bb89f2f # v4.5.2
with:
mode: simulation
token: ${{ secrets.CODSPEED_TOKEN }}
run: poetry run pytest tests/ --codspeed