Skip to content

Interactive plot

Interactive plot #59

Workflow file for this run

# GitHub Action that uses Black to reformat the Python code in an incoming pull request.
# If all Python code in the pull request is compliant with Black then this Action does nothing.
# Othewrwise, we fail and prevent a merge.
# https://github.com/cclauss/autoblack
name: "autoblack"
on: ["pull_request"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: "Set up Python 3.10"
uses: "actions/setup-python@v4"
with:
python-version: "3.10"
- name: "Install Black"
run: "pip install black"
- name: "Run black --check ."
run: "black --check ."