Skip to content

Add a tool for pressurecurve debugging #125

Add a tool for pressurecurve debugging

Add a tool for pressurecurve debugging #125

Workflow file for this run

on: [ push, pull_request ]
jobs:
python-black:
runs-on: ubuntu-20.04
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install black
- run: black test/
- run: git diff --exit-code || (echo "Please run black to reformat Python files" && false)