initial commit
Some checks failed
format / build (push) Failing after 6s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-05-02 18:20:24 +03:00
commit ab580d6a18
17 changed files with 1482 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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: sudo apt install black
- name: Check formatting
run: make check