Skip to content

Update README for code coverage #20

Update README for code coverage

Update README for code coverage #20

Workflow file for this run

name: Python Code Formatting with Black
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install Black
run: pip install black
- name: Run Black Check
run: black --check .