packaging: Use uv to manage this project #2489
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: Performance Testing with CodSpeed 🐇 | |
on: | |
push: | |
branches: | |
- "main" | |
- "v*" | |
paths: | |
- "singer_sdk/**" | |
- "tests/**" | |
- "noxfile.py" | |
- "pyproject.toml" | |
- "uv.lock" | |
- ".github/workflows/codspeed.yml" | |
pull_request: | |
paths: | |
- "singer_sdk/**" | |
- "tests/**" | |
- "noxfile.py" | |
- "pyproject.toml" | |
- "uv.lock" | |
- ".github/workflows/codspeed.yml" | |
# `workflow_dispatch` allows CodSpeed to trigger backtest | |
# performance analysis in order to generate initial data. | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
architecture: x64 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: ">=0.5.19" | |
- run: uv export --frozen --all-extras --group benchmark -o requirements.txt | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
- uses: CodSpeedHQ/action@v3 | |
with: | |
token: ${{ secrets.CODSPEED_TOKEN }} | |
run: pytest tests/ --codspeed |