Skip to content

K8s hello world

K8s hello world #20

Workflow file for this run

name: Ruff format
on:
workflow_dispatch:
workflow_call:
push:
branches: [main]
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Ruff fmt
run: uv run --group lint -- ruff format --diff