Skip to content

Organized visualizers to hopefully allow easier implementations of ne… #39

Organized visualizers to hopefully allow easier implementations of ne…

Organized visualizers to hopefully allow easier implementations of ne… #39

Workflow file for this run

# This pipeline enforces the black formatter on PRs
# More information can be found at:
# https://black.readthedocs.io/en/stable/integrations/github_actions.html
name: black
on: pull_request
jobs:
black:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
- run: |
python -m pip install --upgrade pip
pip install black
- run: |
black --check .