fix(templates): update pfp schema prefix #28
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
# SPDX-FileCopyrightText: 2024 Birger Schacht <[email protected]> | |
# SPDX-License-Identifier: MIT | |
name: Run ruff | |
on: | |
- push | |
jobs: | |
ruff-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Set up Python | |
run: uv python install | |
- name: Install the project | |
run: uv sync --only-dev | |
- name: Run ruff format | |
run: uv run ruff format | |
ruff-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Set up Python | |
run: uv python install | |
- name: Install the project | |
run: uv sync --only-dev | |
- name: Run ruff check | |
run: uv run ruff check |