Some checks failed
format / build (push) Failing after 6s
Signed-off-by: ngn <ngn@ngn.tf>
24 lines
414 B
YAML
24 lines
414 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: sudo apt install black
|
|
|
|
- name: Check formatting
|
|
run: make check
|