fix the format workflow (hopefully)

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-05-02 18:28:54 +03:00
parent ab580d6a18
commit 9cbe33c8be
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D

View File

@ -18,6 +18,12 @@ jobs:
- name: Install black formatter
run: sudo apt install black
run: |
python3 -m venv venv
source venv/bin/activate
pip3 install black
- name: Check formatting
run: make check
run: |
source venv/bin/activate
make check