chore(git-sync): auto-applied #192
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
--- | |
# THIS FILE IS GENERATED! DO NOT EDIT! Maintained by Pulumi | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: python lint | |
on: | |
- pull_request | |
permissions: {} | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
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 . |