release: prepare Socket v10.0.1 #22
Workflow file for this run
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: Validate Socket | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out repository | |
| # This is a validated floor, not a ceiling; update to newer stable official versions when validated. | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up uv | |
| # This is a validated floor, not a ceiling; update to newer stable official versions when validated. | |
| uses: astral-sh/setup-uv@v8.0.0 | |
| - name: Sync root maintainer environment | |
| run: uv sync --dev | |
| - name: Run full Socket validation | |
| run: uv run scripts/validate_socket.py --profile full |