Skip to content

First commit

First commit #2

Workflow file for this run

name: Black Formatting
on:
push:
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
- name: Install Dependencies
run: make install
- name: Test Formatting
run: make black_check