chore(deps): update uv to v0.5.1 (#44) #214
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout ${{ github.repository }} | |
| uses: actions/[email protected] | |
| - name: Install uv | |
| uses: astral-sh/[email protected] | |
| id: setup-uv | |
| with: | |
| # renovate: datasource=pypi dependency=uv | |
| version: "0.5.1" | |
| enable-cache: false | |
| - name: Print the installed version | |
| run: echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}" | |
| - name: Install Python | |
| run: uv python install | |
| - name: Print python version | |
| run: uv python list | |
| - name: Check lockfile is up-to-date | |
| run: uv lock --locked | |
| - name: Run pre-commit | |
| uses: pre-commit/[email protected] | |
| - name: Build mkdocs site | |
| run: uv run mkdocs build --strict |