Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

placeholder

placeholder #1365

Workflow file for this run

name: Style
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- run: pip install black
- name: Run formatting check
run: black . --check