Merge branch 'dev' into main #301
This file contains hidden or 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: package-check | |
| # Builds Python package artifacts and validates metadata so publish config drift | |
| # surfaces before a release is cut. | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| jobs: | |
| package: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| - name: Sync environment | |
| run: uv sync --locked | |
| - name: Build artifacts | |
| run: uv build --out-dir dist | |
| - name: Check artifacts | |
| run: uvx twine check dist/* |