Skip to content

feat: upgrade to python 3.13 #21

feat: upgrade to python 3.13

feat: upgrade to python 3.13 #21

Workflow file for this run

# THIS FILE IS GENERATED! DO NOT EDIT! Maintained by Pulumi
name: python lint
on:
- pull_request
permissions:
pull-requests: read
checks: write
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ github.token }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
uses: actions/setup-python@v5

Check failure on line 19 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --all-extras
- name: Run ruff format
run: uv run ruff format --check .
- name: Run ruff check
run: uv run ruff check .