ups/.gitea/workflows/format.yml
ngn 527f8fa1e1
All checks were successful
format / build (push) Successful in 15s
remove old run key from the workflow
Signed-off-by: ngn <ngn@ngn.tf>
2025-05-02 18:31:34 +03:00

29 lines
535 B
YAML

name: format
on:
push:
branches:
- "main"
paths-ignore:
- "README.md"
- "LICENSE.txt"
- "pyproject.toml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: "https://github.com/actions/checkout@v4"
- name: Install black formatter
run: |
python3 -m venv venv
source venv/bin/activate
pip3 install black
- name: Check formatting
run: |
source venv/bin/activate
make check