splti github actions up
This commit is contained in:
23
.github/workflows/format.yml
vendored
Normal file
23
.github/workflows/format.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Format Check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
format:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up uv
|
||||
uses: astral-sh/setup-uv@v3
|
||||
|
||||
- name: Run ruff format check
|
||||
run: uvx ruff format --check .
|
||||
Reference in New Issue
Block a user