Add per-run cost reports and hosted upload for summarize-pdf #86
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: package-check | |
| on: | |
| pull_request: | |
| jobs: | |
| uv-lock-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Check if uv.lock is up to date | |
| run: | | |
| uv lock --locked | |
| if ! git diff --exit-code uv.lock; then | |
| echo "❌ uv.lock is out of date!" | |
| echo "Please run 'uv lock' to update the lock file." | |
| exit 1 | |
| else | |
| echo "✅ uv.lock is up to date!" | |
| fi |