Skip to content

[WIP] Ci/setup

[WIP] Ci/setup #1

Workflow file for this run

name: Black Formatter Check
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black[jupyter]
- name: Check code formatting with Black
run: black --check .