infra-rebuild/.forgejo/workflows/style.yaml
June 4afbebcf4a
All checks were successful
/ black (push) Successful in 25s
/ ruff (push) Successful in 25s
ci: add a black job to the style.yaml workflow running black --check
2024-06-08 23:43:51 +02:00

24 lines
702 B
YAML

# Links & Resources:
# - https://hatch.pypa.io/latest/install/#github-actions
# - https://docs.astral.sh/ruff/integrations/#github-actions
# - https://black.readthedocs.io/en/stable/integrations/github_actions.html
on: push
jobs:
ruff:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: https://github.com/pypa/hatch@install
- name: Run Ruff
run: hatch run lint:ruff check --output-format=github .
black:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: https://github.com/pypa/hatch@install
- name: Run Black
run: hatch run lint:black --check --diff .