chore: attempt at migrating to uv #8
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: Check deployment | |
on: | |
pull_request: {} | |
permissions: | |
contents: read | |
actions: write | |
checks: write | |
jobs: | |
sync-deploy: | |
name: Sync deployment | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
# Install a specific version of uv. | |
version: "0.4.17" | |
# enable-cache: true | |
# cache-dependency-glob: "uv.lock" | |
- name: checks ruff | |
run: uv run --frozen ruff check . |