Skip to content

Runs after PR complete on main (#6) #17

Runs after PR complete on main (#6)

Runs after PR complete on main (#6) #17

Workflow file for this run

name: Code Quality
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Black
run: |
pip install black
- name: Check code format vs Black
run: |
black --check .