From 3c8d874d578b41946dcf5fbf6c8c2e9b25070cc0 Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Fri, 18 Sep 2026 13:54:44 -0700 Subject: [PATCH] chore: Added formatting check --- .github/workflows/formatting_check.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/formatting_check.yaml diff --git a/.github/workflows/formatting_check.yaml b/.github/workflows/formatting_check.yaml new file mode 100644 index 00000000..e6551fdd --- /dev/null +++ b/.github/workflows/formatting_check.yaml @@ -0,0 +1,15 @@ +name: Black Code Formatter + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + formatting_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: psf/black@stable + with: + options: "--check --verbose --diff --color"