Skip to content

added deploy steps to main as well. #13

added deploy steps to main as well.

added deploy steps to main as well. #13

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 .