Skip to content

feat(release): implement weekly release plan infrastructure #22

feat(release): implement weekly release plan infrastructure

feat(release): implement weekly release plan infrastructure #22

Workflow file for this run

name: Wheel Size Check
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
check-wheel-size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build wheel
- name: Build wheel
run: python -m build --wheel
- name: Check wheel size
run: python scripts/check_wheel_size.py
- name: Upload wheel artifact
uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl