Skip to content

fix pypi

fix pypi #215

Workflow file for this run

name: Black
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --editable ".[dev]"
- name: Reformat the code with black
run: |
black . --check