fix: test vercel build #1729
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: codspeed-benchmarks | |
on: | |
push: | |
branches: | |
- "main" # or "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@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry==1.3.0 | |
poetry export --with test --with dev --without-hashes --output requirements.txt | |
pip install -r requirements.txt | |
pip install -e . | |
- name: Add macos target | |
if: matrix.os == 'macos' | |
run: rustup target add aarch64-apple-darwin | |
- name: Setup Rust part of the project | |
run: | | |
maturin build -i python --universal2 --out dist | |
pip install --no-index --find-links=dist/ robyn | |
- name: Run benchmarks | |
uses: CodSpeedHQ/action@v2 | |
with: | |
token: ${{ secrets.CODSPEED_TOKEN }} | |
run: pytest integration_tests --codspeed |